After pressing OK at modal delete confirmation window nothing happens. It seems like it is js error, because in firebug I see:
ReferenceError: event is not defined
...null!==o&&$(buttonElm).click(function(){o.call(e,this,event)})},this.displayLoad...
Hi! To fix issue:
in ModalRemote.js (and min version also)
line 132, it seems like we should pass event as parameter of function call like this:
$(buttonElm).click(function(event){
__^^^^^
After pressing OK at modal delete confirmation window nothing happens. It seems like it is js error, because in firebug I see: ReferenceError: event is not defined
...null!==o&&$(buttonElm).click(function(){o.call(e,this,event)})},this.displayLoad...
ModalRemote.min.js (row 1, column 2551)