提交 6dfbf6a3 编写于 作者: B Benjamin Pasero

Slow startup / crashes - unusable (fixes #335)

上级 316bcc0f
......@@ -55,7 +55,6 @@ var globals = <IGlobalScope><any> (typeof self === 'object' ? self : global);
var userAgent = globals.navigator ? globals.navigator.userAgent : '';
var isTest = !!globals.isTest;
var isPseudo = globals.document && globals.document.URL.match(/[^\?]*\?[^\#]*pseudo=true/);
// DOCUMENTED FOR FUTURE REFERENCE:
// When running IE11 in IE10 document mode, the code below will identify the browser as being IE10,
......
......@@ -22,7 +22,7 @@ var NLSLoaderPlugin;
var global = _nlsPluginGlobal;
var Resources = global.Plugin && global.Plugin.Resources ? global.Plugin.Resources : undefined;
var DEFAULT_TAG = 'i-default';
var IS_PSEUDO = (global && global.document && global.document.URL.match(/[^\?]*\?[^\#]*pseudo=true/));
var IS_PSEUDO = (global && global.document && global.document.location && global.document.location.hash.indexOf('pseudo=true') >= 0);
var slice = Array.prototype.slice;
function _format(message, args) {
var result;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册