Skip to content

Commit

Permalink
Replace .live() call with .on() call.
Browse files Browse the repository at this point in the history
This was incorrectly done for the Wikipedia lookup
plugin in commit 7ef5b29.
  • Loading branch information
friedelwolff committed May 25, 2012
1 parent 6993607 commit dcc578b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/js/lookup/wikipedia.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

init: function () {
/* Bind event handler */
$(document).live("click", ".wikipedia", this.lookup);
$(document).on("click", ".wikipedia", this.lookup);
},

ready: function () {
Expand Down

0 comments on commit dcc578b

Please sign in to comment.