diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-07-10 18:21:06 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-07-10 18:21:06 -0400 |
| commit | bce442242f167b70be1f7b24190f9e59d3c24e37 (patch) | |
| tree | 0ba85403b2cff9e7e7a97536488b5d479ec3245e /views/controls/editor/media-editor.ejs | |
| parent | b19511eb75c6490ddc97ea59d82615ce4d9e0e91 (diff) | |
media editor
Diffstat (limited to 'views/controls/editor/media-editor.ejs')
| -rw-r--r-- | views/controls/editor/media-editor.ejs | 43 |
1 files changed, 30 insertions, 13 deletions
diff --git a/views/controls/editor/media-editor.ejs b/views/controls/editor/media-editor.ejs index 93405fc..95aabb5 100644 --- a/views/controls/editor/media-editor.ejs +++ b/views/controls/editor/media-editor.ejs @@ -3,28 +3,45 @@ <input type="hidden" name="_id" value="new"> <div class="setting"> - <input type="text" name="name" placeholder="room name" /> + <input type="text" name="name" placeholder="media title"> </div> <div class="setting"> <textarea name="description" placeholder="short description"></textarea> </div> + + <div class="video setting"> + <span class="play"> + <span class="ion-play"></span> + <span class="ion-pause"></span> + </span> + +<!-- + ion-volume-high + ion-volume-mute + --> + + <input type="checkbox" name="autoplay" value="1"> Autoplay + <input type="checkbox" name="loop" value="1"> Loop + <input type="checkbox" name="mute" value="1"> Mute + <input type="range" min="0" max="1" name="keyframe"> Initial Still + </div> - <div class="setting"> - <div class="radio-group"> - <input id="privacy_private" class="radio-group__option" type="radio" name="privacy" value="public" checked> - <label class="radio-group__label" for="privacy_private"> - Everyone - </label> - <input id="privacy_public" class="radio-group__option" type="radio" name="privacy" value="private"> - <label class="radio-group__label" for="privacy_public"> - Just for me - </label> - </div> + <div class="image setting"> + Dimensions + <input type="text" name="width"> Width + <input type="text" name="height"> Height + <select name="units"> + <option value="inches">in</option> + <option value="cm">cm</option> + </select> </div> <div class="setting"> <button data-role="save-media">Save</button> </div> - + + <div class="setting subButtons"> + <a href="#" data-role="destroy-media">Delete</a> + </div> </div> |
