[open-ils-commits] r19007 - trunk/Open-ILS/web/opac/skin/default/js (erickson)
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Dec 17 10:12:30 EST 2010
Author: erickson
Date: 2010-12-17 10:12:28 -0500 (Fri, 17 Dec 2010)
New Revision: 19007
Modified:
trunk/Open-ILS/web/opac/skin/default/js/rdetail.js
trunk/Open-ILS/web/opac/skin/default/js/result_common.js
Log:
dump() is a mozilla thing; use console.log instead
Modified: trunk/Open-ILS/web/opac/skin/default/js/rdetail.js
===================================================================
--- trunk/Open-ILS/web/opac/skin/default/js/rdetail.js 2010-12-16 18:40:42 UTC (rev 19006)
+++ trunk/Open-ILS/web/opac/skin/default/js/rdetail.js 2010-12-17 15:12:28 UTC (rev 19007)
@@ -556,7 +556,7 @@
try {
chili_init();
} catch(E) {
- dump(E + '\n');
+ console.log(E + '\n');
hideMe($('rdetail_reviews_link'));
hideMe($('rdetail_chilifresh_reviews'));
}
Modified: trunk/Open-ILS/web/opac/skin/default/js/result_common.js
===================================================================
--- trunk/Open-ILS/web/opac/skin/default/js/result_common.js 2010-12-16 18:40:42 UTC (rev 19006)
+++ trunk/Open-ILS/web/opac/skin/default/js/result_common.js 2010-12-17 15:12:28 UTC (rev 19007)
@@ -689,7 +689,7 @@
function fetchChiliFreshReviews() {
if (chilifresh && chilifresh != '(none)') {
- try { chili_init(); } catch(E) { dump(E + '\n'); }
+ try { chili_init(); } catch(E) { console.log(E + '\n'); }
}
}
More information about the open-ils-commits
mailing list