diff --git a/candy.bundle.js b/candy.bundle.js index a97dbbd2..aa778a71 100644 --- a/candy.bundle.js +++ b/candy.bundle.js @@ -100,7 +100,7 @@ Candy.Core = function(self, Strophe, $) { */ _options = { /** Boolean: autojoin - * If set to `true` try to get the bookmarks and autojoin the rooms (supported by Openfire). + * If set to `true` try to get the bookmarks and autojoin the rooms (supported by ejabberd, Openfire). * You may want to define an array of rooms to autojoin: `['room1@conference.host.tld', 'room2...]` (ejabberd, Openfire, ...) */ autojoin: undefined, @@ -2165,7 +2165,7 @@ Candy.Core.Event = function(self, Strophe, $) { */ Bookmarks: function(msg) { Candy.Core.log("[Jabber] Bookmarks"); - // Autojoin bookmarks (Openfire) + // Autojoin bookmarks $("conference", msg).each(function() { var item = $(this); if (item.attr("autojoin")) { diff --git a/src/core.js b/src/core.js index 5879bce3..de003e45 100644 --- a/src/core.js +++ b/src/core.js @@ -53,7 +53,7 @@ Candy.Core = (function(self, Strophe, $) { */ _options = { /** Boolean: autojoin - * If set to `true` try to get the bookmarks and autojoin the rooms (supported by Openfire). + * If set to `true` try to get the bookmarks and autojoin the rooms (supported by ejabberd, Openfire). * You may want to define an array of rooms to autojoin: `['room1@conference.host.tld', 'room2...]` (ejabberd, Openfire, ...) */ autojoin: undefined, diff --git a/src/core/event.js b/src/core/event.js index c275b8f0..3157756a 100644 --- a/src/core/event.js +++ b/src/core/event.js @@ -171,7 +171,7 @@ Candy.Core.Event = (function(self, Strophe, $) { */ Bookmarks: function(msg) { Candy.Core.log('[Jabber] Bookmarks'); - // Autojoin bookmarks (Openfire) + // Autojoin bookmarks $('conference', msg).each(function() { var item = $(this); if(item.attr('autojoin')) {