ocarina/html/controls.js

37 lines
354 B
JavaScript

// Bryan Schumaker (12 / 27 / 2010)
function control(action)
{
send_request("controls.py?a=" + action);
}
function play()
{
control("play");
}
function pause()
{
control("pause");
}
function stop()
{
control("stop");
}
function next()
{
control("next");
}
function forward()
{
control("forward");
}
function rewind()
{
control("rewind");
}