mirror of
https://github.com/dkmstr/openuds.git
synced 2024-12-22 13:34:04 +03:00
Do not attempt to reference opener unless it is actually defined.
This commit is contained in:
parent
c7ba6e84b9
commit
8af8c91e2e
@ -23,7 +23,7 @@
|
||||
/**
|
||||
* Global storage for Guacamole pages.
|
||||
*/
|
||||
GuacamoleSessionStorage = (opener && opener.GuacamoleSessionStorage) || new (function() {
|
||||
GuacamoleSessionStorage = (window.opener && opener.GuacamoleSessionStorage) || new (function() {
|
||||
|
||||
/**
|
||||
* The contents of storage, as a JSON string containing name/value pairs as
|
||||
|
Loading…
Reference in New Issue
Block a user