diff --git a/thrimbletrimmer/beta/edit.html b/thrimbletrimmer/beta/edit.html index 329d022..7b53335 100644 --- a/thrimbletrimmer/beta/edit.html +++ b/thrimbletrimmer/beta/edit.html @@ -55,12 +55,15 @@
  • Equals (=): Increase playback speed one step
  • Hyphen (-): Decrease playback speed one step
  • - Left bracket ([): Set start point for active range (indicated by arrow) to active - video time + Left bracket ([): Set start point for active range (indicated by arrow) to active video + time
  • Right bracket (]): Set end point for active range to active video time
  • O: Set active range one above current active range
  • -
  • P: Set active range one below current active range, adding a new range if the current active range is the last one
  • +
  • + P: Set active range one below current active range, adding a new range if the current + active range is the last one +
  • Transition Types

    diff --git a/thrimbletrimmer/beta/scripts/common.js b/thrimbletrimmer/beta/scripts/common.js index 23c454d..599c5ce 100644 --- a/thrimbletrimmer/beta/scripts/common.js +++ b/thrimbletrimmer/beta/scripts/common.js @@ -137,10 +137,7 @@ function generateDownloadURL(startTime, endTime, downloadType, allowHoles, quali const startURLTime = getWubloaderTimeFromDate(startTime); const endURLTime = getWubloaderTimeFromDate(endTime); - const queryParts = [ - `type=${downloadType}`, - `allow_holes=${allowHoles}`, - ]; + const queryParts = [`type=${downloadType}`, `allow_holes=${allowHoles}`]; if (startURLTime) { queryParts.push(`start=${startURLTime}`); }