Prepare release

This commit is contained in:
benweet 2013-12-05 00:42:49 +00:00
parent 23f68a0863
commit dd3c2330ad
3 changed files with 6 additions and 10 deletions

View File

@ -1,9 +1,5 @@
CACHE MANIFEST CACHE MANIFEST
<<<<<<< HEAD #Date Thu Dec 05 2013 00:42:44
#Date Thu Dec 05 2013 00:36:35
=======
#Date Tue Dec 03 2013 00:27:53
>>>>>>> dd07077616dde78c6dc19f22e39ea98f05575656
CACHE: CACHE:
res/worker.js res/worker.js
@ -419,4 +415,4 @@ libs/MathJax/jax/output/HTML-CSS/fonts/STIX/fontdata.js
#DynamicResourcesEnd #DynamicResourcesEnd
NETWORK: NETWORK:
* *

View File

@ -20493,8 +20493,8 @@ function() {
}, r.onReady = function() { }, r.onReady = function() {
i = e(document.body), o = e('<div class="hide">'), e(".working-indicator").append(o); i = e(document.body), o = e('<div class="hide">'), e(".working-indicator").append(o);
for (var t = 0; 3 > t; t++) o.append(e('<div class="bar">').css({ for (var t = 0; 3 > t; t++) o.append(e('<div class="bar">').css({
"animation-delay": (2 * t / 10).toPrecision(3) + "s", "animation-delay": (15 * t / 10).toPrecision(3) + "s",
"-webkit-animation-delay": (2 * t / 10).toPrecision(3) + "s" "-webkit-animation-delay": (15 * t / 10).toPrecision(3) + "s"
})); }));
}, r; }, r;
}), function(e) { }), function(e) {

View File

@ -19,8 +19,8 @@ define([
$('.working-indicator').append($workingIndicatorElt); $('.working-indicator').append($workingIndicatorElt);
for (var i = 0; i < 3; i++) { for (var i = 0; i < 3; i++) {
$workingIndicatorElt.append($('<div class="bar">').css({ $workingIndicatorElt.append($('<div class="bar">').css({
'animation-delay': (i*2/10).toPrecision(3) + 's', 'animation-delay': (i*15/10).toPrecision(3) + 's',
'-webkit-animation-delay': (i*2/10).toPrecision(3) + 's', '-webkit-animation-delay': (i*15/10).toPrecision(3) + 's',
})); }));
} }
}; };