Changes

Jump to navigation Jump to search
no edit summary
Line 1: Line 1:  
// License: GPL
 
// License: GPL
 +
 +
function clipboard(copyText) {
 +
  /* Get the text field */
 +
 +
  /* Select the text field */
 +
  copyText.select();
 +
  copyText.setSelectionRange(0, 99999); /*For mobile devices*/
 +
 +
  /* Copy the text inside the text field */
 +
  document.execCommand("copy");
 +
}
 +
 +
 +
    
var controller_item_id = 96;
 
var controller_item_id = 96;

Navigation menu