mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-21 12:51:21 +01:00
for (remote) manual do NOT try to talk to its iframe, as it is from a different domain an only gives a security error in the browser
This commit is contained in:
parent
6eb6941248
commit
a753a89ab1
@ -106,7 +106,7 @@ egw_fw.prototype.alertHandler = function(_message, _details)
|
||||
|
||||
egw_fw.prototype.callManual = function()
|
||||
{
|
||||
if (this.activeApp)
|
||||
if (this.activeApp && this.activeApp.appName != 'manual')
|
||||
{
|
||||
if (this.activeApp.browser.iframe)
|
||||
{
|
||||
@ -117,7 +117,7 @@ egw_fw.prototype.callManual = function()
|
||||
|
||||
egw_fw.prototype.print = function()
|
||||
{
|
||||
if (this.activeApp)
|
||||
if (this.activeApp && this.activeApp.appName != 'manual')
|
||||
{
|
||||
if (this.activeApp.browser.iframe)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user