Update demo.js

Added missing functions
pull/67/merge
Abdullah Almsaeed 2014-07-03 11:46:12 -04:00
parent 6e4a3aeea0
commit 2715d7b111
1 changed files with 10 additions and 1 deletions

View File

@ -70,3 +70,12 @@ $(function() {
$("body").append(demo);
$("body").append(demo_settings);
});
function change_layout() {
$("body").toggleClass("fixed");
fix_sidebar();
}
function change_skin(cls) {
$("body").removeClass("skin-blue skin-black");
$("body").addClass(cls);
}