diff options
Diffstat (limited to 'static/index.html')
-rw-r--r-- | static/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/static/index.html b/static/index.html index e2f2312..c1c747f 100644 --- a/static/index.html +++ b/static/index.html @@ -12,16 +12,16 @@ <div> <input type="button" value="Close event source" onclick="source.close()" /> <input type="button" value="Open event source" onclick="event_open()" /> - <input type="button" value="Refresh directory" onclick="list(document.getElementById('current-dir').innerHTML.split(': ', 2)[1])" /> + <input type="button" value="Refresh directory" onclick="browser.list(document.getElementById('current-dir').innerHTML.split(': ', 2)[1])" /> </div> <div id="search-div"> - <input type="text" id="search-query" onkeypress="do_search(event)" /> + <input type="text" id="search-query" onkeypress="browser.do_search(event)" /> </div> <div id="current-dir"></div> <div id="hpanel"> <span "browser-span"> <span class="list-header">Browse directory</span> - <a href="#" onclick="add_directory(); return false" id="add-dir">Add all</a> + <a href="#" onclick="browser.add_directory(); return false" id="add-dir">Add all</a> <ul id="song-links"></ul> </span> <span id="playlist-span"> |