extensions/net.sf.basedb.labenv/trunk/resources/print.js

Code
Comments
Other
Rev Date Author Line
2989 02 Dec 14 olle 1
2989 02 Dec 14 olle 2 var Print = function()
2989 02 Dec 14 olle 3 {
2989 02 Dec 14 olle 4   var print = {};
2989 02 Dec 14 olle 5   var internal = {};
2989 02 Dec 14 olle 6   
2989 02 Dec 14 olle 7   print.initPage = function()
2989 02 Dec 14 olle 8   {
2989 02 Dec 14 olle 9     document.getElementById('print-button').addEventListener('click', internal.doPrint, false);
3735 10 Feb 16 olle 10     window.opener.LabEnv.finalizePrint(window);
2989 02 Dec 14 olle 11   }
2989 02 Dec 14 olle 12   
2989 02 Dec 14 olle 13   internal.doPrint = function()
2989 02 Dec 14 olle 14   {
2989 02 Dec 14 olle 15     window.print();
2989 02 Dec 14 olle 16   }
2989 02 Dec 14 olle 17   
2989 02 Dec 14 olle 18   
2989 02 Dec 14 olle 19   return print;
2989 02 Dec 14 olle 20 }();
2989 02 Dec 14 olle 21
2989 02 Dec 14 olle 22 document.addEventListener('DOMContentLoaded', Print.initPage, false);
2989 02 Dec 14 olle 23