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)