MediaWiki:Common.js: Difference between revisions

From Renesas.info
No edit summary
No edit summary
Line 16: Line 16:


function command_box(text) {
function command_box(text) {
   if (text.startsWith('$ '))
   if (text.startsWith('$ ')) {
     text_to_copy = text.substring(2);
     text_to_copy = text.substring(2);
   else
    document.write("11111");
  }
   else {
     text_to_copy = text;
     text_to_copy = text;
    document.write("2222");
  }


   document.write("<table border=0 width=100%><tr><td>");
   document.write("<table border=0 width=100%><tr><td>");

Revision as of 19:54, 15 September 2022

/* Any JavaScript here will be loaded for all users on every page load. */

function copy_to_clipboard_2(text) {
  navigator.clipboard.writeText(text);
  alert("Copied: " + text);
}

function copy_to_clipboard(text) {
  btn = document.activeElement;
  navigator.clipboard.writeText(text);
  btn.value="📋Copied!";
  //btn.style.backgroundColor = 'green';
  //btn.style.color = 'white';
  btn.style.color = 'blue';
}

function command_box(text) {
  if (text.startsWith('$ ')) {
    text_to_copy = text.substring(2);
    document.write("11111");
  }
  else {
    text_to_copy = text;
    document.write("2222");
  }

  document.write("<table border=0 width=100%><tr><td>");
  document.write("<pre>" + text + "</pre>");
  document.write("</td><td width=1>");
  document.write("<input type=button value=\"📋Copy\" onclick=\"copy_to_clipboard('" + text_to_copy + "')\" />");
  document.write("</td></tr></table>");
}