feat(legacy): visual cue point editor (#2947)
A visual cue point editor in the track editor view. This view displays the track as a waveform and allows you to set where the in- and out-cue points are set. These cue points determine the start and end points of the track. --------- Co-authored-by: Thomas Göttgens <tgoettgens@mail.com> Co-authored-by: Kyle Robbertze <paddatrapper@users.noreply.github.com>
This commit is contained in:
parent
71b20ae3c9
commit
da02e74f21
20 changed files with 9420 additions and 43 deletions
|
@ -1160,8 +1160,8 @@ var AIRTIME = (function (AIRTIME) {
|
|||
});
|
||||
|
||||
newTab.wrapper.find(".edit-md-dialog").on("keyup", function (event) {
|
||||
// Don't submit if the user hits enter in a textarea (description)
|
||||
if ($(event.target).is("input") && event.keyCode === 13) {
|
||||
// Don't submit if the user hits enter in a textarea (description) or in the waveform editor
|
||||
if ($(event.target).is("form input") && event.keyCode === 13) {
|
||||
newTab.wrapper.find(".md-save").click();
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue