diff options
author | topfs2 <topfs2@svn> | 2010-04-06 17:05:54 +0000 |
---|---|---|
committer | topfs2 <topfs2@svn> | 2010-04-06 17:05:54 +0000 |
commit | 51de2e72e65671b25cdc3c63db28448b92b63d3f (patch) | |
tree | 815abcd85a7f5fb9e4a0cdcd2c3d2215ea1785a7 /web | |
parent | 781cb699822c2953b547bc0a66374f9766f19170 (diff) |
Cosmetics, made buttons in nowplaying.html be a link with onclick method
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@29076 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'web')
-rw-r--r-- | web/poc_jsonrpc/nowplaying.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/poc_jsonrpc/nowplaying.html b/web/poc_jsonrpc/nowplaying.html index 22a18935a9..e81e4ca520 100644 --- a/web/poc_jsonrpc/nowplaying.html +++ b/web/poc_jsonrpc/nowplaying.html @@ -64,10 +64,10 @@ if (players.length > 0) { document.write("<br></br>"); - document.write("<img src=\"images/OSDPrevTrackFO.png\" onclick=CallMethod(\"" + player + "Player.SkipPrevious\")></img>"); - document.write("<img src=\"images/OSDStopFO.png\" onclick=CallMethod(\"" + player + "Player.Stop\")></img>"); - document.write("<img src=\"images/OSDPlayFO.png\" onclick=CallMethod(\"" + player + "Player.PlayPause\")></img>"); - document.write("<img src=\"images/OSDNextTrackFO.png\" onclick=CallMethod(\"" + player + "Player.SkipNext\")></img>"); + document.write("<a href=\"nowplaying.html\" onclick=CallMethod(\"" + player + "Player.SkipPrevious\")><img src=\"images/OSDPrevTrackFO.png\"></img></a>"); + document.write("<a href=\"nowplaying.html\" onclick=CallMethod(\"" + player + "Player.Stop\")><img src=\"images/OSDStopFO.png\"></img></a>"); + document.write("<a href=\"nowplaying.html\" onclick=CallMethod(\"" + player + "Player.PlayPause\")><img src=\"images/OSDPlayFO.png\"></img></a>"); + document.write("<a href=\"nowplaying.html\" onclick=CallMethod(\"" + player + "Player.SkipNext\")><img src=\"images/OSDNextTrackFO.png\"></img></a>"); document.write("<br></br>"); |