r91856 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r91855‎ | r91856 | r91857 >
Date:00:43, 11 July 2011
Author:jeroendedauw
Status:deferred
Tags:
Comment:
applied patch by Laurent Alquier
Modified paths:
  • /trunk/extensions/SemanticResultFormats/Exhibit/exhibit/exhibit-bundle.js (modified) (history)
  • /trunk/extensions/SemanticResultFormats/Exhibit/exhibit/scripts/data/database.js (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticResultFormats/Exhibit/exhibit/scripts/data/database.js
@@ -136,7 +136,7 @@
137137 };
138138
139139 Exhibit.Database._Impl.prototype.loadDataLinks = function(fDone) {
140 - var links = SimileAjax.jQuery('head > link[rel=exhibit/data]').get();
 140+ var links = SimileAjax.jQuery('head > link[rel="exhibit/data"]').get();
141141 this._loadLinks(links, this, fDone);
142142 };
143143
Index: trunk/extensions/SemanticResultFormats/Exhibit/exhibit/exhibit-bundle.js
@@ -370,7 +370,7 @@
371371 };
372372 Exhibit.Database._Impl.prototype.removeListener=function(listener){this._listeners.remove(listener);
373373 };
374 -Exhibit.Database._Impl.prototype.loadDataLinks=function(fDone){var links=SimileAjax.jQuery("head > link[rel=exhibit/data]").get();
 374+Exhibit.Database._Impl.prototype.loadDataLinks=function(fDone){var links=SimileAjax.jQuery('head > link[rel="exhibit/data"]').get();
375375 this._loadLinks(links,this,fDone);
376376 };
377377 Exhibit.Database._Impl.prototype.loadLinks=function(links,fDone){this._loadLinks(links,this,fDone);