Added form

This commit is contained in:
Thomas FORGIONE 2015-06-25 18:07:19 +02:00
parent 3c2599f29b
commit 741f23e03d
1 changed files with 22 additions and 0 deletions

View File

@ -9,6 +9,21 @@ block extrajs
script(src="/static/js/threetools.min.js") script(src="/static/js/threetools.min.js")
script(src="/static/js/socket.io.min.js") script(src="/static/js/socket.io.min.js")
script(src="/static/js/streamingsimulator.min.js") script(src="/static/js/streamingsimulator.min.js")
script(type='text/javascript').
$(function() {
var filterInt = function (value) {
if(/^(\-|\+)?([0-9]+|Infinity)$/.test(value))
return Number(value);
return NaN;
}
$('#form').submit(function(e) {
e.preventDefault();
var val = filterInt(document.getElementById('num').value);
console.log(val);
window.location.href = "/stream/" + val;
});
});
block content block content
h2 Sphere streaming h2 Sphere streaming
@ -24,4 +39,11 @@ block content
onto the socket and the faces will be displayed as soon as you receive onto the socket and the faces will be displayed as soon as you receive
them. them.
form.form-inline#form
.form-group
label Try another resolution (between 1 and 25)
input#num(type='number', min=1, max=25, value=5, style={"margin-left":"10px"})
.form-group
button#submit.btn.btn-primary(type='submit', style={"margin-left":"10px"}) Go
#container #container