b=390898, just some dumb pageloader typos, r=stuart

This commit is contained in:
vladimir@pobox.com 2007-08-10 13:34:32 -07:00
Родитель 29e49364f4
Коммит 3707158e9d
2 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -161,7 +161,7 @@ function plInit() {
content = document.getElementById('contentPageloader'); content = document.getElementById('contentPageloader');
setTimeout(plLoadPage, 0); setTimeout(plLoadPage, 250);
} }
} catch(e) { } catch(e) {
dumpLine(e); dumpLine(e);
@ -208,7 +208,7 @@ function plNextPage() {
if (pageIndex < pages.length-1) { if (pageIndex < pages.length-1) {
pageIndex++; pageIndex++;
setTimeout(plLoadPage, 0); setTimeout(plLoadPage, 250);
} else { } else {
plStop(false); plStop(false);
} }
@ -234,7 +234,7 @@ function plLoadHandlerCapturing(evt) {
// set up the function for content to call // set up the function for content to call
content.contentWindow.wrappedJSObject.tpRecordTime = function (time) { content.contentWindow.wrappedJSObject.tpRecordTime = function (time) {
plRecordTime(time); plRecordTime(time);
setTimeout(plNextPage, 0); setTimeout(plNextPage, 250);
}; };
} }
@ -292,7 +292,7 @@ function plStop(force) {
pageIndex = 0; pageIndex = 0;
if (cycle < NUM_CYCLES-1) { if (cycle < NUM_CYCLES-1) {
cycle++; cycle++;
setTimeout(plLoadPage, 0); setTimeout(plLoadPage, 250);
return; return;
} }

Просмотреть файл

@ -164,7 +164,7 @@ function strPad(o, len, left) {
return str; return str;
} }
function strPadFixed0(n, len, left) { function strPadFixed(n, len, left) {
return strPad(n.toFixed(0), len, left); return strPad(n.toFixed(0), len, left);
} }