www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit bc0463774fc75f19225e1c0fbbb789d0c8c7361c
parent f09def19f7639453f6268b76329e9523d9a1bf2f
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sat, 27 May 2006 00:44:24 +0000

Move XPCOM-included files into subdirectory to keep separate from chrome files and rename overlay.js to scholar.js


Diffstat:
Rchrome/chromeFiles/content/scholar/data_access.js -> chrome/chromeFiles/content/scholar/xpcom/data_access.js | 0
Rchrome/chromeFiles/content/scholar/db.js -> chrome/chromeFiles/content/scholar/xpcom/db.js | 0
Rchrome/chromeFiles/content/scholar/overlay.js -> chrome/chromeFiles/content/scholar/xpcom/scholar.js | 0
Mcomponents/chnmIScholarService.js | 6+++---
4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/chrome/chromeFiles/content/scholar/data_access.js b/chrome/chromeFiles/content/scholar/xpcom/data_access.js diff --git a/chrome/chromeFiles/content/scholar/db.js b/chrome/chromeFiles/content/scholar/xpcom/db.js diff --git a/chrome/chromeFiles/content/scholar/overlay.js b/chrome/chromeFiles/content/scholar/xpcom/scholar.js diff --git a/components/chnmIScholarService.js b/components/chnmIScholarService.js @@ -16,16 +16,16 @@ var ScholarWrapped = this; Cc["@mozilla.org/moz/jssubscript-loader;1"] .getService(Ci.mozIJSSubScriptLoader) - .loadSubScript("chrome://scholar/content/overlay.js"); + .loadSubScript("chrome://scholar/content/xpcom/scholar.js"); Cc["@mozilla.org/moz/jssubscript-loader;1"] .getService(Ci.mozIJSSubScriptLoader) - .loadSubScript("chrome://scholar/content/db.js"); + .loadSubScript("chrome://scholar/content/xpcom/db.js"); Cc["@mozilla.org/moz/jssubscript-loader;1"] .getService(Ci.mozIJSSubScriptLoader) - .loadSubScript("chrome://scholar/content/data_access.js"); + .loadSubScript("chrome://scholar/content/xpcom/data_access.js"); /********************************************************************/