Skip to content

Commit

Permalink
Fix #325 - .click isn't universal, .change seems to be...
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnSmith-LT committed Jun 8, 2015
1 parent 297c62e commit 9cfd3bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/js/toolbox.js
Expand Up @@ -1755,7 +1755,7 @@ var EDITOR = (function ($, parent) {
form_id_offset++;
html = $('<select>')
.attr('id', id)
.click({id:id, key:key, name:name}, function(event)
.change({id:id, key:key, name:name}, function(event)
{
selectChanged(event.data.id, event.data.key, event.data.name, this.value, this);
});
Expand Down

0 comments on commit 9cfd3bd

Please sign in to comment.