From 2715d7b111eef5311447cf5b2aaaecf3a0633677 Mon Sep 17 00:00:00 2001 From: Abdullah Almsaeed Date: Thu, 3 Jul 2014 11:46:12 -0400 Subject: [PATCH] Update demo.js Added missing functions --- js/AdminLTE/demo.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/js/AdminLTE/demo.js b/js/AdminLTE/demo.js index f935974d5..44f871f35 100644 --- a/js/AdminLTE/demo.js +++ b/js/AdminLTE/demo.js @@ -69,4 +69,13 @@ $(function() { $("body").append(demo); $("body").append(demo_settings); -}); \ No newline at end of file +}); + +function change_layout() { + $("body").toggleClass("fixed"); + fix_sidebar(); +} +function change_skin(cls) { + $("body").removeClass("skin-blue skin-black"); + $("body").addClass(cls); +}