Fix clear query option which was opening a query tool in new window in Mac Runtime

pull/3/head
Surinder Kumar 2016-07-13 12:35:22 +01:00 committed by Dave Page
parent 47e849dee0
commit 9ad0bd1026
1 changed files with 2 additions and 3 deletions

View File

@ -862,9 +862,8 @@ define(
// Callback function for the clear button click. // Callback function for the clear button click.
on_clear: function(ev) { on_clear: function(ev) {
ev = ev || window.event; this._stopEventPropogation(ev);
ev.cancelBubble = true; this._closeDropDown(ev);
ev.stopPropagation();
this.query_tool_obj.setValue(''); this.query_tool_obj.setValue('');
}, },