Merged in paulis/processmaker/3.0.1.5 (pull request #2918)

EX-236: Error screen to save the template of an output document in IE
This commit is contained in:
Julio Cesar Laura Avendaño
2015-10-08 17:34:11 -04:00

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();
}
}
}
}