diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-09-22 03:28:15 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-09-22 03:28:15 +0000 |
| commit | 7265acc377e49beaed3f3c43f36267c9fced53e7 (patch) | |
| tree | 0e4747469e3ba5398605b8d500a6725b8393cae3 /lib/python/Plugins | |
| parent | 3a0c7bdb992181e4cbdbf09d9f7d14c13c911659 (diff) | |
| download | enigma2-7265acc377e49beaed3f3c43f36267c9fced53e7.tar.gz enigma2-7265acc377e49beaed3f3c43f36267c9fced53e7.zip | |
add imdb query link
Diffstat (limited to 'lib/python/Plugins')
| -rw-r--r-- | lib/python/Plugins/Extensions/WebInterface/web/index.html.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/python/Plugins/Extensions/WebInterface/web/index.html.xml b/lib/python/Plugins/Extensions/WebInterface/web/index.html.xml index b4a992c3..370f9329 100644 --- a/lib/python/Plugins/Extensions/WebInterface/web/index.html.xml +++ b/lib/python/Plugins/Extensions/WebInterface/web/index.html.xml @@ -93,6 +93,7 @@ div.wrapper <div id="CurrentService"> </div> <div> <span id="Event_Now_Begin"> </span> <span id="Event_Now_Name"> </span> +<a href="javascript:imdb()">...</a> <span id="Event_Now_Remaining"> </span> </div> <div id="Event_Now_Description"> </div> @@ -130,6 +131,12 @@ function zap(li) request.send(null); } +function imdb() +{ + w = window.open("http://www.imdb.com/find?s=all&q=" + escape(document.getElementById("Event_Now_Name").innerHTML)); + w.focus(); +} + </script> </body> |
