Recompile Sept 12 ()

This commit is contained in:
Tim Mickel 2016-09-12 11:06:53 -04:00 committed by GitHub
parent 3277584da9
commit 69821db56f
4 changed files with 499 additions and 761 deletions

View file

@ -7982,30 +7982,20 @@
var cachedSetTimeout;
var cachedClearTimeout;
function defaultSetTimout() {
throw new Error('setTimeout has not been defined');
}
function defaultClearTimeout () {
throw new Error('clearTimeout has not been defined');
}
(function () {
try {
if (typeof setTimeout === 'function') {
cachedSetTimeout = setTimeout;
} else {
cachedSetTimeout = defaultSetTimout;
}
cachedSetTimeout = setTimeout;
} catch (e) {
cachedSetTimeout = defaultSetTimout;
cachedSetTimeout = function () {
throw new Error('setTimeout is not defined');
}
}
try {
if (typeof clearTimeout === 'function') {
cachedClearTimeout = clearTimeout;
} else {
cachedClearTimeout = defaultClearTimeout;
}
cachedClearTimeout = clearTimeout;
} catch (e) {
cachedClearTimeout = defaultClearTimeout;
cachedClearTimeout = function () {
throw new Error('clearTimeout is not defined');
}
}
} ())
function runTimeout(fun) {
@ -8013,11 +8003,6 @@
//normal enviroments in sane situations
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 {
// when when somebody has screwed with setTimeout but no I.E. maddness
return cachedSetTimeout(fun, 0);
@ -8038,11 +8023,6 @@
//normal enviroments in sane situations
return clearTimeout(marker);
}
// if clearTimeout wasn't available but was latter defined
if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {
cachedClearTimeout = clearTimeout;
return clearTimeout(marker);
}
try {
// when when somebody has screwed with setTimeout but no I.E. maddness
return cachedClearTimeout(marker);

File diff suppressed because one or more lines are too long

1206
render.js

File diff suppressed because it is too large Load diff

12
render.min.js vendored

File diff suppressed because one or more lines are too long