https fix v.004

This commit is contained in:
Trevor Squillario 2011-08-17 18:30:55 -04:00
parent b2808332ca
commit 4ddf7e6038
5 changed files with 9 additions and 3 deletions

6
README
View file

@ -1 +1,5 @@
Hello World!
Hello World!
8/15/2011 .001 Initial Release
.003 Fixed song details on player

BIN
images/subsonic_32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
images/subsonic_48x48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -2,7 +2,9 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>SubWeb</title>
<title>SubWeb</title>
<link rel="icon" href="images/subsonic_48x48.png" sizes="48x48"/>
<link rel="icon" href="images/subsonic_32x32.png" sizes="32x32"/>
<link href="Style.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="js/audiojs/audio.min.js" type="text/javascript"></script>

View file

@ -1,6 +1,6 @@
// Global Variables
var hostURL = location.href;
var baseURL = 'http://' + location.host + '/rest';
var baseURL = location.protocol + '//' + location.host + '/rest';
var username = $.cookie('username');
var password = $.cookie('password');
var auth = makeBaseAuth(username, password);