From: erickson Date: Fri, 17 Dec 2010 15:12:48 +0000 (+0000) Subject: dump() is a mozilla thing; use console.log instead X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=cb4c9a868647fab725195506fe6b9ca31b605ce6;p=evergreen%2Fjoelewis.git dump() is a mozilla thing; use console.log instead git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_2_0@19008 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/opac/skin/default/js/rdetail.js b/Open-ILS/web/opac/skin/default/js/rdetail.js index 153fc9e9d8..c9369be183 100644 --- a/Open-ILS/web/opac/skin/default/js/rdetail.js +++ b/Open-ILS/web/opac/skin/default/js/rdetail.js @@ -518,7 +518,7 @@ function _rdetailDraw(r) { try { chili_init(); } catch(E) { - dump(E + '\n'); + console.log(E + '\n'); hideMe($('rdetail_reviews_link')); hideMe($('rdetail_chilifresh_reviews')); } diff --git a/Open-ILS/web/opac/skin/default/js/result_common.js b/Open-ILS/web/opac/skin/default/js/result_common.js index 409a1ca491..24336a597b 100644 --- a/Open-ILS/web/opac/skin/default/js/result_common.js +++ b/Open-ILS/web/opac/skin/default/js/result_common.js @@ -668,7 +668,7 @@ function fetchGoogleBooksLink () { function fetchChiliFreshReviews() { if (chilifresh && chilifresh != '(none)') { - try { chili_init(); } catch(E) { dump(E + '\n'); } + try { chili_init(); } catch(E) { console.log(E + '\n'); } } }