Allow non-amd usage of converse.js without requiring OTR modules.

This commit is contained in:
JC Brand 2014-01-30 09:35:35 +02:00
parent 42b28b8425
commit 9bce25109c

View File

@ -30,7 +30,11 @@
evaluate : /\{\[([\s\S]+?)\]\}/g,
interpolate : /\{\{([\s\S]+?)\}\}/g
};
root.converse = factory(jQuery, _, OTR, DSA, console || {log: function(){}});
if ((typeof OTR !== "undefined") && (typeof DSA !== "undefined")) {
root.converse = factory(jQuery, _, OTR, DSA, console);
} else {
root.converse = factory(jQuery, _, undefined, undefined, console);
}
}
}(this, function ($, _, OTR, DSA, console) {
$.fn.addHyperlinks = function() {