www

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

commit cde7170868eac2f5c966490623b8d207b84c2826
parent 36af25b3e99974b1f154d3cb85b5bdbcbf47dc6a
Author: Simon Kornblith <simon@simonster.com>
Date:   Wed,  9 Aug 2006 16:58:54 +0000

references #169, add OpenURL interface hooks

Scholar.OpenURL.discoverResolvers() now returns an array of {name, url, version} objects


Diffstat:
Mchrome/chromeFiles/content/scholar/xpcom/ingester.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/chromeFiles/content/scholar/xpcom/ingester.js b/chrome/chromeFiles/content/scholar/xpcom/ingester.js @@ -197,7 +197,7 @@ Scholar.OpenURL = new function() { continue; } - resolverArray[name] = [url, version]; + resolverArray.push({name:name, url:url, version:version}); } return resolverArray;