You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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)
The text was updated successfully, but these errors were encountered: