From: erickson Date: Fri, 17 Dec 2010 15:12:28 +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=c3f689e29b3e4705c41d494e60e97a6a3f063986;p=contrib%2FConifer.git dump() is a mozilla thing; use console.log instead git-svn-id: svn://svn.open-ils.org/ILS/trunk@19007 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 14bd7278c3..08e8319464 100644 --- a/Open-ILS/web/opac/skin/default/js/rdetail.js +++ b/Open-ILS/web/opac/skin/default/js/rdetail.js @@ -556,7 +556,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 dc3ae94921..62f1eed2b0 100644 --- a/Open-ILS/web/opac/skin/default/js/result_common.js +++ b/Open-ILS/web/opac/skin/default/js/result_common.js @@ -689,7 +689,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'); } } }