zotero/chrome/chromeFiles/content/scholar/fileProgress.xul
Simon Kornblith 30af2c89df - closes #130, add progress bar for import/export
- eliminates "unresponsive script" message on import/export

i tried to make a progress bar that actually provides useful information, but for some reason, XUL interface updates are done asynchronously, and thus don't actually happen as long as the import/export operation continues. the code is there, but disabled, if there's some solution to this issue, but i searched and couldn't find one.
2006-08-02 21:06:58 +00:00

15 lines
561 B
XML

<?xml version="1.0" ?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<!DOCTYPE window SYSTEM "chrome://scholar/locale/scholar.dtd">
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="&progress.title;" width="300" height="30"
id="scholar-progress">
<vbox style="padding:10px">
<hbox align="stretch">
<label id="progress-label" flex="1" />
<label id="progress-items" style="text-align:right;width:20px" />
</hbox>
<progressmeter id="progress-indicator" mode="undetermined" />
</vbox>
</window>