LSview : Fixed customAction confirm by JS

This commit is contained in:
Benjamin Renard 2011-05-20 18:42:21 +02:00
parent f1dfcf13bf
commit 954b610a51

View file

@ -29,6 +29,9 @@ var LSview = new Class({
if (checkRemove.exec(el.href)) {
el.addEvent('click',this.onRemoveViewBtnClick.bindWithEvent(this,el));
}
else if(el.hasClass('LScustomActions')) {
el.addEvent('click',this.onCustomActionBtnClick.bindWithEvent(this,el));
}
}, this);
this.LSsearchForm = $('LSsearch_form');