www/js/prod_forum.js

Fri, 03 Jan 2020 15:21:22 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 03 Jan 2020 15:21:22 +0100
changeset 577
b4bfed3684d0
parent 565
dfc850e6ee1f
permissions
-rw-r--r--

In production archive lists show always the OG from the brew fermenter SG. Possible fix for the not used og field in the database.


$(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