Skip to content

Commit

Permalink
Merge pull request #263 from benlangfeld/feature/ejabberd_bookmarks
Browse files Browse the repository at this point in the history
ejabberd *does* support Bookmarks
  • Loading branch information
mweibel committed Jul 8, 2014
2 parents 6118049 + 8bb01d3 commit df951c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions candy.bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: `['[email protected]', 'room2...]` (ejabberd, Openfire, ...)
*/
autojoin: undefined,
Expand Down
2 changes: 1 addition & 1 deletion src/core/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')) {
Expand Down

0 comments on commit df951c9

Please sign in to comment.