Skip to content

Commit a0d4fd4

Browse files
committed
change minutes to seconds
1 parent 5e7c026 commit a0d4fd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/widgets/sampler.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ function SampleWidget() {
742742

743743
const fromInputBox = document.createElement("input");
744744
fromInputBox.type = "text";
745-
fromInputBox.title = "Enter start time (in minutes)";
745+
fromInputBox.title = "Enter start time (in seconds)";
746746
fromInputBox.placeholder = "0.00";
747747
fromInputBox.style.width = "152px";
748748
fromInputBox.style.height = "61px";
@@ -758,7 +758,7 @@ function SampleWidget() {
758758

759759
const toInputBox = document.createElement("input");
760760
toInputBox.type = "text";
761-
toInputBox.title = "Enter end time (in minutes)";
761+
toInputBox.title = "Enter end time (in seconds)";
762762
toInputBox.placeholder = "10.00";
763763
toInputBox.style.width = "152px";
764764
toInputBox.style.height = "61px";

0 commit comments

Comments
 (0)