From 52e9425333eb88196c96e5d8d69a44a4b73bd76a Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Thu, 25 Nov 2010 22:36:01 -0500 Subject: [PATCH] Web controls updates The web controls need to be updated to call the control functions in libsaria.controls --- html/controls.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/html/controls.py b/html/controls.py index dce4090d..84aaaa6c 100644 --- a/html/controls.py +++ b/html/controls.py @@ -3,9 +3,11 @@ import libsaria.audio import libsaria.sources -play = libsaria.audio.play -pause = libsaria.audio.pause -stop = libsaria.audio.stop +controls = libsaria.controls + +play = controls.play +pause = controls.pause +stop = controls.stop next = libsaria.sources.plist_next