diff options
| author | Teddy Wing | 2013-11-10 01:56:55 -0500 |
|---|---|---|
| committer | Teddy Wing | 2013-11-10 01:56:55 -0500 |
| commit | a0b372e4e3268f478963d43ccf40b5cee1f6e082 (patch) | |
| tree | 73a766ea8f73b7d7e8cbadda686a87a5d1e55fd5 /index.html | |
| parent | e174c16db3fe84f9d69e756a533f784dac546482 (diff) | |
| download | clip-play-a0b372e4e3268f478963d43ccf40b5cee1f6e082.tar.bz2 | |
Add time values to the drag handles
Time in mm:ss appears on the drag handles. Drag them around and the
time changes accordingly.
NOTE: this version is kind of borked because for some reason in my
testing the start of the video displayed as 24 seconds.
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -41,11 +41,15 @@ <div class="edit-sample js-edit-sample"> <div class="progress-bar"> <div class="clip-line js-clip-line js-start-position"> - <div class="drag-handle js-drag-handle"></div> + <div class="drag-handle js-drag-handle"> + <span class="js-time"></span> + </div> </div> <div class="clip-line js-clip-line js-end-position"> - <div class="drag-handle js-drag-handle"></div> + <div class="drag-handle js-drag-handle"> + <span class="js-time"></span> + </div> </div> </div> |
