2.0.8 Permissions warning

This commit is contained in:
Trevor Squillario 2012-09-30 00:05:08 -04:00
parent e2099ee62a
commit 491271bd07
4 changed files with 79 additions and 2 deletions

View file

@ -211,4 +211,12 @@ function checkVersion(runningVersion, minimumVersion) {
} else {
return false;
}
}
function switchTheme(theme) {
//var theme = $(this).data('genre');
//$("link").attr("href", $(this).attr('rel'));
//$('link[data-name=main]').data('name');
if (theme == 'dark') {
$('link[data-name=main]').attr('href', 'style/Dark.css');
}
}