Skip to content

Commit

Permalink
remove click selector not(.page-selector)
Browse files Browse the repository at this point in the history
it become somehow inrelevent, must be relevant before. But now as we dont want any icingaweb specific code here it must be removed anyway.
  • Loading branch information
sukhwinder33445 committed Jul 2, 2024
1 parent f05b9bd commit dd76acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asset/js/widget/ActionList.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ define(["../notjQuery"], function (notjQuery) {
}

bind() {
notjQuery(this.list).on('click', `${this.listIdentifier} ${this.listItemIdentifier}:not(.page-separator), ${this.listIdentifier} ${this.listItemIdentifier} a[href]`, this.onClick, this);
notjQuery(this.list).on('click', `${this.listIdentifier} ${this.listItemIdentifier}, ${this.listIdentifier} ${this.listItemIdentifier} a[href]`, this.onClick, this);
/*this.on('close-column', '#main > #col2', this.onColumnClose, this);
this.on('column-moved', this.onColumnMoved, this);*/

Expand Down

0 comments on commit dd76acc

Please sign in to comment.