Moving to libs and plugins directories

This commit is contained in:
Javier Aguirre 2012-04-24 20:47:37 +02:00
parent 990dcc4776
commit 82bbe8ed15
17 changed files with 3 additions and 3 deletions

9
js/libs/auth.js Normal file
View file

@ -0,0 +1,9 @@
function auth()
{
$('#Username').val($.cookie('username'));
$('#Password').val($.cookie('password'));
$('#AutoAlbumSize').val($.cookie('AutoAlbumSize'));
$('#AutoPlaylistSize').val($.cookie('AutoPlaylistSize'));
$('#Server').val($.cookie('Server'));
$('#ApplicationName').val($.cookie('ApplicationName'));
}