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.
on_clear: function(ev) {
ev = ev || window.event;
ev.cancelBubble = true;
ev.stopPropagation();
this._stopEventPropogation(ev);
this._closeDropDown(ev);
this.query_tool_obj.setValue('');
},