Browse Source

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

JC Brand 11 years ago
parent
commit
9bce25109c
1 changed files with 5 additions and 1 deletions
  1. 5 1
      converse.js

+ 5 - 1
converse.js

@@ -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() {