Explorar el Código

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

JC Brand hace 11 años
padre
commit
9bce25109c
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  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() {