Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Change select box save from onclick to onchange
  • Loading branch information
usernamenumber committed Nov 24, 2014
1 parent 6afe18a commit 522640e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/js/toolbox.js
Expand Up @@ -1482,7 +1482,7 @@ var EDITOR = (function ($, parent) {
//html += '</select>';
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 522640e

Please sign in to comment.