Recompile Sept 12 (#31)
This commit is contained in:
parent
3277584da9
commit
69821db56f
@ -7982,30 +7982,20 @@
|
|||||||
var cachedSetTimeout;
|
var cachedSetTimeout;
|
||||||
var cachedClearTimeout;
|
var cachedClearTimeout;
|
||||||
|
|
||||||
function defaultSetTimout() {
|
|
||||||
throw new Error('setTimeout has not been defined');
|
|
||||||
}
|
|
||||||
function defaultClearTimeout () {
|
|
||||||
throw new Error('clearTimeout has not been defined');
|
|
||||||
}
|
|
||||||
(function () {
|
(function () {
|
||||||
try {
|
try {
|
||||||
if (typeof setTimeout === 'function') {
|
cachedSetTimeout = setTimeout;
|
||||||
cachedSetTimeout = setTimeout;
|
|
||||||
} else {
|
|
||||||
cachedSetTimeout = defaultSetTimout;
|
|
||||||
}
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
cachedSetTimeout = defaultSetTimout;
|
cachedSetTimeout = function () {
|
||||||
|
throw new Error('setTimeout is not defined');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
if (typeof clearTimeout === 'function') {
|
cachedClearTimeout = clearTimeout;
|
||||||
cachedClearTimeout = clearTimeout;
|
|
||||||
} else {
|
|
||||||
cachedClearTimeout = defaultClearTimeout;
|
|
||||||
}
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
cachedClearTimeout = defaultClearTimeout;
|
cachedClearTimeout = function () {
|
||||||
|
throw new Error('clearTimeout is not defined');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} ())
|
} ())
|
||||||
function runTimeout(fun) {
|
function runTimeout(fun) {
|
||||||
@ -8013,11 +8003,6 @@
|
|||||||
//normal enviroments in sane situations
|
//normal enviroments in sane situations
|
||||||
return setTimeout(fun, 0);
|
return setTimeout(fun, 0);
|
||||||
}
|
}
|
||||||
// if setTimeout wasn't available but was latter defined
|
|
||||||
if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {
|
|
||||||
cachedSetTimeout = setTimeout;
|
|
||||||
return setTimeout(fun, 0);
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
// when when somebody has screwed with setTimeout but no I.E. maddness
|
// when when somebody has screwed with setTimeout but no I.E. maddness
|
||||||
return cachedSetTimeout(fun, 0);
|
return cachedSetTimeout(fun, 0);
|
||||||
@ -8038,11 +8023,6 @@
|
|||||||
//normal enviroments in sane situations
|
//normal enviroments in sane situations
|
||||||
return clearTimeout(marker);
|
return clearTimeout(marker);
|
||||||
}
|
}
|
||||||
// if clearTimeout wasn't available but was latter defined
|
|
||||||
if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {
|
|
||||||
cachedClearTimeout = clearTimeout;
|
|
||||||
return clearTimeout(marker);
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
// when when somebody has screwed with setTimeout but no I.E. maddness
|
// when when somebody has screwed with setTimeout but no I.E. maddness
|
||||||
return cachedClearTimeout(marker);
|
return cachedClearTimeout(marker);
|
||||||
|
6
render-worker.min.js
vendored
6
render-worker.min.js
vendored
File diff suppressed because one or more lines are too long
12
render.min.js
vendored
12
render.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user