EX-236: Error screen to save the template of an output document in IE

This commit is contained in:
Paula V. Quispe
2015-10-08 09:00:35 -04:00
committed by Victor Saisa Lopez
parent d2dc4e650a
commit 28caced5e2

View File

@@ -17,7 +17,11 @@
if (( _BROWSER.name == 'msie' ) && ( _BROWSER.version < '9' )) {
window.close();
} 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' )) {
window.close();
} else {
outputdocsEditor.remove();
if(typeof outputdocsEditor == 'undefined'){
window.close();
} else {
outputdocsEditor.remove();
}
}
}
}