Re-enable import progress indicator

This commit is contained in:
Simon Kornblith 2015-06-12 17:06:07 -04:00
parent 6db380b132
commit 5cbb8de96b
2 changed files with 3 additions and 3 deletions

View File

@ -631,10 +631,10 @@ Zotero_File_Interface.Progress = new function() {
this.close = close; this.close = close;
function show(headline) { function show(headline) {
//Zotero.showZoteroPaneProgressMeter(headline); Zotero.showZoteroPaneProgressMeter(headline);
} }
function close() { function close() {
//Zotero.hideZoteroPaneOverlays(); Zotero.hideZoteroPaneOverlays();
} }
} }

View File

@ -1,7 +1,7 @@
describe("Zotero_File_Interface", function() { describe("Zotero_File_Interface", function() {
let win; let win;
before(function* () { before(function* () {
win = yield loadBrowserWindow(); win = yield loadZoteroPane();
yield OS.File.copy(OS.Path.join(getTestDataDirectory().path, "Test Import Translator.js"), yield OS.File.copy(OS.Path.join(getTestDataDirectory().path, "Test Import Translator.js"),
OS.Path.join(Zotero.getTranslatorsDirectory().path, "Test Import Translator.js")); OS.Path.join(Zotero.getTranslatorsDirectory().path, "Test Import Translator.js"));
yield Zotero.Translators.reinit(); yield Zotero.Translators.reinit();