Prettify updates

pull/235/head
ElementalAlchemist 3 years ago committed by Mike Lang
parent 6fc8710166
commit ac5a015724

@ -55,12 +55,15 @@
<li>Equals (=): Increase playback speed one step</li> <li>Equals (=): Increase playback speed one step</li>
<li>Hyphen (-): Decrease playback speed one step</li> <li>Hyphen (-): Decrease playback speed one step</li>
<li> <li>
Left bracket ([): Set start point for active range (indicated by arrow) to active Left bracket ([): Set start point for active range (indicated by arrow) to active video
video time time
</li> </li>
<li>Right bracket (]): Set end point for active range to active video time</li> <li>Right bracket (]): Set end point for active range to active video time</li>
<li>O: Set active range one above current active range</li> <li>O: Set active range one above current active range</li>
<li>P: Set active range one below current active range, adding a new range if the current active range is the last one</li> <li>
P: Set active range one below current active range, adding a new range if the current
active range is the last one
</li>
</ul> </ul>
<h2>Transition Types</h2> <h2>Transition Types</h2>
<p> <p>

@ -137,10 +137,7 @@ function generateDownloadURL(startTime, endTime, downloadType, allowHoles, quali
const startURLTime = getWubloaderTimeFromDate(startTime); const startURLTime = getWubloaderTimeFromDate(startTime);
const endURLTime = getWubloaderTimeFromDate(endTime); const endURLTime = getWubloaderTimeFromDate(endTime);
const queryParts = [ const queryParts = [`type=${downloadType}`, `allow_holes=${allowHoles}`];
`type=${downloadType}`,
`allow_holes=${allowHoles}`,
];
if (startURLTime) { if (startURLTime) {
queryParts.push(`start=${startURLTime}`); queryParts.push(`start=${startURLTime}`);
} }

Loading…
Cancel
Save