summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
authorTeddy Wing2013-11-10 06:36:58 -0500
committerTeddy Wing2013-11-10 06:36:58 -0500
commit6d41687a9195791760bd815cdbe9775519c02ac2 (patch)
tree1e55c7faeb8466bdbec9add6d83e50d650eff76b /index.html
parent70440be316d8ea96ddd4583cad9219620c4ba2ac (diff)
downloadclip-play-6d41687a9195791760bd815cdbe9775519c02ac2.tar.bz2
Remove the form tag because I kept accidentally pressing enter
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).
Diffstat (limited to 'index.html')
-rw-r--r--index.html6
1 files changed, 2 insertions, 4 deletions
diff --git a/index.html b/index.html
index 411135c..223e5fe 100644
--- a/index.html
+++ b/index.html
@@ -24,10 +24,8 @@
<div role="main">
<div id="add-sample">
- <form action="" method="get">
- <input type="text" class="url-input js-sample-url" placeholder="http://www.youtube.com/watch?v=_JGaQ3g8WU4" />
- <button type="button" class="button green large js-create-sample">+</button>
- </form>
+ <input type="text" class="url-input js-sample-url" placeholder="http://www.youtube.com/watch?v=_JGaQ3g8WU4" />
+ <button type="button" class="button green large js-create-sample">+</button>
</div>
<div id="samples"></div>