www/js/prod_forum.js

Sun, 01 Mar 2020 11:23:22 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 01 Mar 2020 11:23:22 +0100
changeset 615
9034e65b0d7a
parent 565
dfc850e6ee1f
permissions
-rw-r--r--

Added CO2 carbonation log to the products database. Added button in the packaging tab.


$(document).ready(function() {

 /**
  * This will copy the innerHTML of an element to the clipboard
  * @param element reference OR string
  */
 function copyToClipboard(e) {
    var tempItem = document.createElement('textarea');

    document.body.appendChild(tempItem);
    tempItem.value = e;
    tempItem.select();
    document.execCommand('Copy');

    tempItem.parentElement.removeChild(tempItem);
 }


 $('#copytoClipboard').jqxButton({ template: 'success', theme: theme, width: 150 });
 $('#copytoClipboard').click(function() {
  copyToClipboard(forumstr);
  window.close();
 });

});

mercurial