Explorar o código

Add deprecation warnings for events that will be removed.

JC Brand %!s(int64=9) %!d(string=hai) anos
pai
achega
e0c6626c6f
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      src/converse-core.js

+ 3 - 0
src/converse-core.js

@@ -68,6 +68,9 @@
             $(event_context).one(evt, handler);
         },
         on: function (evt, handler) {
+            if (_.contains(['ready', 'initialized'], evt)) {
+                converse.log('Warning: The "'+evt+'" event has been deprecated and will be removed, please use "connected".');
+            }
             $(event_context).bind(evt, handler);
         },
         off: function (evt, handler) {