summaryrefslogtreecommitdiffstats
path: root/index.html
AgeCommit message (Collapse)Author
2013-11-10adding bounds for samples programmaticallyKawandeep Virdee
2013-11-10Add footer with creator info & linksTeddy Wing
2013-11-10Update page titleTeddy Wing
2013-11-10Merge branch 'master' of github.com:whichlight/clip-playKawandeep Virdee
2013-11-10added z-index stuffKawandeep Virdee
2013-11-10Add new samples when pressing the enter key in the add formTeddy Wing
2013-11-10Move the clip lines to the right on initial loadTeddy Wing
Moves the clip lines farther into the progress bar such that the drag handles appear inside the progress bar. This ensures that the thumbnail is not covered by the left drag handle.
2013-11-10Add thumbnail to sample editorTeddy Wing
2013-11-10added remove buttonKawandeep Virdee
2013-11-10Remove unused font stylesheets from includesTeddy Wing
2013-11-10Remove the form tag because I kept accidentally pressing enterTeddy Wing
When you press enter, it submits the form and reloads the page which is not what we want to have happen in this case. We want the add button to be clicked (manually or programmatically).
2013-11-10Improve styling of drag handlesTeddy Wing
2013-11-10Clean up look of progress barTeddy Wing
* Widen progress bar * Increase height of elements contained within the progress bar to match my change from the last commit * Stagger the drag handles so that the time is visible even if they are close together. Unfortunately, the clip line appears above the start drag handle when they are close together & I can't seem to fix this using z-index. I will update this to make the drag handles aligned horizontally again, but will nudge them so that the side of a handle juts up against the clip line.
2013-11-10Style keyboard key inputsTeddy Wing
2013-11-10Style the '+' URL buttonTeddy Wing
2013-11-10Style URL inputTeddy Wing
2013-11-10Semi-style headerTeddy Wing
Include a bunch of fonts to experiment & see what looks best.
2013-11-10Add a bar between the clip linesTeddy Wing
Displays the selected portion of the video, and highlights between the clip lines. When you drag a clip line, the selected bar resizes accordingly. When you drag the bar, the clip lines move along with it to a different part of the video. NOTE: the dragging responsiveness is a little laggy right now. Kind of janky to be honest. Hopefully we can figure out a way to make the connection a bit smoother.
2013-11-10Merge branch 'add-time-to-drag-handles'Teddy Wing
Conflicts: assets/js/models/sample.js
2013-11-10Add time values to the drag handlesTeddy Wing
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.
2013-11-10keybindingKawandeep Virdee
2013-11-09moved libs for player demoKawandeep Virdee
2013-11-09Create a new view for clip linesTeddy Wing
Move code related to clip line initialisation etc. into the new view.
2013-11-09Backbone-ify code from Kawan's sample.jsTeddy Wing
* Add attributes to the model * Add player initialisation code to the Sample item view
2013-11-09Initialise drag handles on sample addTeddy Wing
When a new sample is added, initialise the drag handles so they are draggable. Also remove initial sample from markup.
2013-11-09Make the add button semi-workTeddy Wing
Paste a URL, click the '+' button, and a new sample progress bar appears on the page (woo!). TODO: initialise drag handles on add of a new sample progress bar
2013-11-09Don't include utils.js because I don't think it's usedTeddy Wing
2013-11-09Add Backbone + structureTeddy Wing
Create basic app structure using Backbone & Marionette.
2013-11-09mergeKawandeep Virdee
2013-11-09url to media frameKawandeep Virdee
2013-11-09Start adding video and player functionsTeddy Wing
Create functions to convert between progress bar position and seek point in seconds. Add a test video to the index.html page.
2013-11-09Set up progress bar and clip chooserTeddy Wing
Initial setup for a progress bar and basic interface for choosing a sample clip. Includes a bar with two draggable lines to set a range within the bar.