3.1.1 sway.fm fixed, multiple sub-folder fix

This commit is contained in:
Trevor Squillario 2013-11-01 07:31:43 -04:00
parent 89684032ce
commit 4b116d0024
37 changed files with 1629 additions and 530 deletions

View file

@ -15,9 +15,9 @@ function SettingsCtrl($scope, $routeParams, $location, utils, globals, json, not
$scope.Themes = ["Default", "Dark"];
$scope.$watch('settings.HideAZ', function () {
if (globals.settings.HideAZ) {
$('#AZContainer').hide();
$('#AZIndex').hide();
} else {
$('#AZContainer').show();
$('#AZIndex').show();
}
});
$scope.save = function () {
@ -63,10 +63,11 @@ function SettingsCtrl($scope, $routeParams, $location, utils, globals, json, not
var Server = "http://subsonic.org/demo";
var Tab = "tabLibrary";
if (utils.confirmDelete("Do you want to connect to the Subsonic Demo server?")) {
settings.Username(Username);
settings.Password(Password);
settings.Server(Server);
location.reload();
globals.settings.Username = Username;
globals.settings.Password = Password;
globals.settings.Server = Server;
//$scope.save();
$location.url('/library');
}
}