##// END OF EJS Templates
Fix bug where selection box modification would cause page to scroll to the top
Jonathan Frederic -
Show More
@@ -150,6 +150,11 b' define(['
150 */
150 */
151 this.model.set('value_name', $(e.target).text(), {updated_view: this});
151 this.model.set('value_name', $(e.target).text(), {updated_view: this});
152 this.touch();
152 this.touch();
153
154 // Manually hide the droplist.
155 e.stopPropagation();
156 e.preventDefault();
157 this.$buttongroup.removeClass('open');
153 },
158 },
154
159
155 });
160 });
General Comments 0
You need to be logged in to leave comments. Login now