Sfoglia il codice sorgente

Add deprecation warnings for events that will be removed.

JC Brand 9 anni fa
parent
commit
e0c6626c6f
1 ha cambiato i file con 3 aggiunte e 0 eliminazioni
  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) {