Work in progress of printing nextmatches, still needs some prettying up & edge case testing

This commit is contained in:
Nathan Gray
2015-01-27 16:26:59 +00:00
parent 789d02a7e0
commit cee521d4cd
5 changed files with 226 additions and 3 deletions

View File

@ -958,7 +958,17 @@ var fw_base = Class.extend({
if (appWindow)
{
appWindow.focus();
appWindow.print();
// et2 available, let its widgets prepare
if(typeof etemplate2 == "function" && etemplate2.print)
{
etemplate2.print(this.activeApp.appName);
}
else
{
// Print
appWindow.print();
}
}
}
}