From 883fe6f306ff761befee85985232795067036a24 2015-03-13 19:25:05 From: Min RK Date: 2015-03-13 19:25:05 Subject: [PATCH] Merge pull request #8027 from bollwyvl/fix-select-multiple Don't re-implement option.click to trigger select.change closes #8012 --- diff --git a/IPython/html/static/widgets/js/widget_selection.js b/IPython/html/static/widgets/js/widget_selection.js index 1eb7550..d601cb7 100644 --- a/IPython/html/static/widgets/js/widget_selection.js +++ b/IPython/html/static/widgets/js/widget_selection.js @@ -557,6 +557,15 @@ define([ SelectMultipleView.__super__.update.apply(this, arguments); this.$listbox.val(this.model.get('selected_labels')); }, + + handle_click: function(){ + /** + * Overload click from select + * + * Apparently it's needed from there for testing purposes, + * but breaks behavior of this. + */ + }, handle_change: function (e) { /**