Handle case where console is undefined, like on IE

This commit is contained in:
JC Brand 2012-11-20 13:53:04 +02:00
parent 9abb9e36bf
commit fb03ea8a56

View File

@ -48,7 +48,7 @@
"Libraries/backbone",
"Libraries/strophe.muc",
"Libraries/strophe.roster"
], function (Burry, _s) {
], function (Burry, _s, logging) {
var store = new Burry.Store('collective.xmpp.chat');
// Init underscore.str
_.str = _s;
@ -57,6 +57,10 @@
evaluate : /\{\[([\s\S]+?)\]\}/g,
interpolate : /\{\{([\s\S]+?)\}\}/g
};
if (console===undefined || console.log===undefined) {
console = { log: function () {}, error: function () {} };
}
return factory(jQuery, store, _, console);
}
);
@ -67,6 +71,9 @@
evaluate : /\{\[([\s\S]+?)\]\}/g,
interpolate : /\{\{([\s\S]+?)\}\}/g
};
if (console===undefined || console.log===undefined) {
console = { log: function () {}, error: function () {} };
}
root.xmppchat = factory(jQuery, store, _, console || {log: function(){}});
}
}(this, function ($, store, _, console) {