Index: core/src/main/javascript/inter.window.notification.js =================================================================== --- core/src/main/javascript/inter.window.notification.js (revision 43632) +++ core/src/main/javascript/inter.window.notification.js (revision 43633) @@ -42,7 +42,8 @@ //the random number is required to force locaStorage event notification when stored value has not changed window.localStorage.setItem(name, join(newValue, ' ') + ' ' + Math.random()); //notify the current window as well, when not running in IE - if (!/MSIE/.test(navigator.userAgent)) { + var agent = navigator.userAgent; + if (!/MSIE/.test(agent) && !/Trident/.test(agent)) { callback(newValue); } });