EX-236: Error screen to save the template of an output document in IE
This commit is contained in:
committed by
Victor Saisa Lopez
parent
d2dc4e650a
commit
28caced5e2
@@ -17,7 +17,11 @@
|
|||||||
if (( _BROWSER.name == 'msie' ) && ( _BROWSER.version < '9' )) {
|
if (( _BROWSER.name == 'msie' ) && ( _BROWSER.version < '9' )) {
|
||||||
window.close();
|
window.close();
|
||||||
} else {
|
} else {
|
||||||
outputdocsEditor.remove();
|
if(typeof outputdocsEditor == 'undefined'){
|
||||||
|
window.close();
|
||||||
|
} else {
|
||||||
|
outputdocsEditor.remove();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -29,7 +33,11 @@ if ( typeof outputdocsSave == 'undefined'){
|
|||||||
if (( _BROWSER.name == 'msie' ) && ( _BROWSER.version < '9' )) {
|
if (( _BROWSER.name == 'msie' ) && ( _BROWSER.version < '9' )) {
|
||||||
window.close();
|
window.close();
|
||||||
} else {
|
} else {
|
||||||
outputdocsEditor.remove();
|
if(typeof outputdocsEditor == 'undefined'){
|
||||||
|
window.close();
|
||||||
|
} else {
|
||||||
|
outputdocsEditor.remove();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user