ocarina/html/controls.js
Bryan Schumaker c02bffb652 libsaria: Web server controls playback
I can choose songs to play by clicking rows in an html table.  I also
write text to the client as it becomes available, rather than doing it
all at once.
2011-05-15 15:39:14 -04:00

47 lines
447 B
JavaScript

// Bryan Schumaker (12 / 27 / 2010)
function control(action)
{
send_request("RPC/" + action);
}
function play()
{
control("play");
}
function load_id(id)
{
control("load&id="+id);
}
function pause()
{
control("pause");
}
function stop()
{
control("stop");
}
function next()
{
control("next");
}
function forward()
{
control("forward");
}
function rewind()
{
control("rewind");
}
function play_id(id)
{
control("play_id/" + id)
}