mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-16 11:38:02 +02:00
Work in progress of printing nextmatches, still needs some prettying up & edge case testing
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user