diff options
author | Marcel Klehr <mklehr@gmx.net> | 2013-04-10 17:56:09 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2013-04-10 17:56:09 +0200 |
commit | c755633f0920ce45415e305b9ac6ee07070a6170 (patch) | |
tree | c64d209d76c4c72dc3f8f6ea52b092800bae5ea5 /src/static/js/html10n.js | |
parent | 4a5e63f1054413dbba161cfbcf0e9011135124c8 (diff) | |
download | etherpad-lite-c755633f0920ce45415e305b9ac6ee07070a6170.zip |
Update html10n.js to correctly use the console.log shim
fixes #1724
Diffstat (limited to 'src/static/js/html10n.js')
-rw-r--r-- | src/static/js/html10n.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/static/js/html10n.js b/src/static/js/html10n.js index 406409ad..90f84ff9 100644 --- a/src/static/js/html10n.js +++ b/src/static/js/html10n.js @@ -135,7 +135,7 @@ window.html10n = (function(window, document, undefined) { for (var i=0, n=this.resources.length; i < n; i++) { this.fetch(this.resources[i], lang, function(e) { reqs++; - if(e) console.warn(e) + if(e) consoleWarn(e) if (reqs < n) return;// Call back once all reqs are completed cb && cb() @@ -934,4 +934,4 @@ window.html10n = (function(window, document, undefined) { window._ = html10n.get; return html10n -})(window, document)
\ No newline at end of file +})(window, document) |