Skip to content

Commit

Permalink
chore: fix a small editor problem with percent editor
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed May 17, 2023
1 parent af82a57 commit a5aa2bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slick.editors.js
Original file line number Diff line number Diff line change
Expand Up @@ -590,8 +590,8 @@
};

this.onClick = function () {
input.value = this.getAttribute("val");
slider.value = this.getAttribute("val");
input.value = this.value;
slider.value = this.value;
};

this.destroy = function () {
Expand Down

0 comments on commit a5aa2bc

Please sign in to comment.