Commit 51b85f9a authored by JC Brand's avatar JC Brand

Make compatible with JQuery 1.4.4 by using .delegate instead of .on

parent db7c0ba7
...@@ -976,11 +976,11 @@ xmppchat.RosterItemView = Backbone.View.extend({ ...@@ -976,11 +976,11 @@ xmppchat.RosterItemView = Backbone.View.extend({
} else if (ask === 'request') { } else if (ask === 'request') {
this.$el.addClass('requesting-xmpp-contact'); this.$el.addClass('requesting-xmpp-contact');
$(this.el).html(this.request_template(item.toJSON())); $(this.el).html(this.request_template(item.toJSON()));
this.$el.find('button.accept-xmpp-request').on('click', function (ev) { this.$el.delegate('button.accept-xmpp-request', 'click', function (ev) {
ev.preventDefault(); ev.preventDefault();
that.acceptRequest(); that.acceptRequest();
}); });
this.$el.find('button.decline-xmpp-request').on('click', function (ev) { this.$el.delegate('button.decline-xmpp-request', 'click', function (ev) {
ev.preventDefault(); ev.preventDefault();
that.declineRequest(); that.declineRequest();
}); });
...@@ -988,14 +988,14 @@ xmppchat.RosterItemView = Backbone.View.extend({ ...@@ -988,14 +988,14 @@ xmppchat.RosterItemView = Backbone.View.extend({
} else if (subscription === 'both') { } else if (subscription === 'both') {
this.$el.addClass('current-xmpp-contact'); this.$el.addClass('current-xmpp-contact');
this.$el.html(this.template(item.toJSON())); this.$el.html(this.template(item.toJSON()));
this.$el.find('a.open-chat').on('click', function (ev) { this.$el.delegate('a.open-chat', 'click', function (ev) {
ev.preventDefault(); ev.preventDefault();
that.openChat(); that.openChat();
}); });
} }
// Event handlers // Event handlers
this.$el.find('a.remove-xmpp-contact').on('click', function (ev) { this.$el.delegate('a.remove-xmpp-contact','click', function (ev) {
ev.preventDefault(); ev.preventDefault();
that.removeContact(); that.removeContact();
}); });
...@@ -1153,8 +1153,7 @@ xmppchat.Roster = (function (_, $, console) { ...@@ -1153,8 +1153,7 @@ xmppchat.Roster = (function (_, $, console) {
// Ignore MUC or self-addressed stanzas // Ignore MUC or self-addressed stanzas
return true; return true;
} }
if ((status_message.length > 0)&&(status_message.text())) {
if (status_message.length > 0) {
model = ob.getItem(bare_jid); model = ob.getItem(bare_jid);
model.set({'status': status_message.text()}); model.set({'status': status_message.text()});
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment