Reduce the amount of CPU an undetermined progressmeter consumes b=279465 r=mconnor sr=jag

This commit is contained in:
neil%parkwaycc.co.uk 2006-09-11 13:55:19 +00:00
Родитель b3cc4f321e
Коммит 557fee24fb
2 изменённых файлов: 10 добавлений и 8 удалений

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

@ -69,16 +69,17 @@
var position = -1;
var interval = setInterval(function nextStep() {
try {
var width = stack.boxObject.width >> 2;
spacer.height = stack.boxObject.height;
spacer.width = stack.boxObject.width >> 2;
spacer.left = spacer.width * position;
position += 30 / (stack.boxObject.width + 600);
spacer.width = width;
spacer.left = width * position;
position += 15 / (width + 150);
if (position >= 4)
position = -1;
} catch (e) {
clearInterval(interval);
}
}, 10);
}, 20);
]]></body>
</method>

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

@ -69,16 +69,17 @@
var position = -1;
var interval = setInterval(function nextStep() {
try {
var width = stack.boxObject.width >> 2;
spacer.height = stack.boxObject.height;
spacer.width = stack.boxObject.width >> 2;
spacer.left = spacer.width * position;
position += 30 / (stack.boxObject.width + 600);
spacer.width = width;
spacer.left = width * position;
position += 15 / (width + 150);
if (position >= 4)
position = -1;
} catch (e) {
clearInterval(interval);
}
}, 10);
}, 20);
]]></body>
</method>