Skip to content

Commit c1c6e56

Browse files
committed
add title in trim input boxes
1 parent 9c56e15 commit c1c6e56

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

js/widgets/sampler.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -749,6 +749,7 @@ function SampleWidget() {
749749

750750
const fromInputBox = document.createElement("input");
751751
fromInputBox.type = "text";
752+
fromInputBox.title = "Enter start time (in minutes)";
752753
fromInputBox.placeholder = "0.00";
753754
fromInputBox.style.width = "152px";
754755
fromInputBox.style.height = "61px";
@@ -764,6 +765,7 @@ function SampleWidget() {
764765

765766
const toInputBox = document.createElement("input");
766767
toInputBox.type = "text";
768+
toInputBox.title = "Enter end time (in minutes)";
767769
toInputBox.placeholder = "10.00";
768770
toInputBox.style.width = "152px";
769771
toInputBox.style.height = "61px";

0 commit comments

Comments
 (0)