Skip to content

Commit

Permalink
Test: Fix/Remove/MoveUp/MoveDown Maybe DIVs
Browse files Browse the repository at this point in the history
  • Loading branch information
kergomard committed Apr 11, 2024
1 parent 2229ec3 commit bde34f5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ var AnswerWizardInput = {

initEvents(rootel) {
const that = this;
$(rootel).find(`button.${this.tag_button}_add .glyph`).click((e) => {
$(rootel).find(`.${this.tag_button}_add .glyph`).click((e) => {
that.addRow(e);
});
$(rootel).find(`button.${this.tag_button}_remove .glyph`).click((e) => {
$(rootel).find(`.${this.tag_button}_remove .glyph`).click((e) => {
that.removeRow(e);
});
$(rootel).find(`button.${this.tag_button}_up .glyph`).click((e) => {
$(rootel).find(`.${this.tag_button}_up .glyph`).click((e) => {
that.moveRowUp(e);
});
$(rootel).find(`button.${this.tag_button}_down .glyph`).click((e) => {
$(rootel).find(`.${this.tag_button}_down .glyph`).click((e) => {
that.moveRowDown(e);
});
},
Expand Down

0 comments on commit bde34f5

Please sign in to comment.