diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-12-16 16:14:01 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-12-16 16:14:01 +0100 |
commit | b8370cffb9a9f69ad87d489df6b73d7daa5434c0 (patch) | |
tree | f4c8963d0cb7da9360aa7bb4e1151a33a4c0cfe5 /view/theme/redbasic | |
parent | b863447c2b33dcf31764b111057acdc5e5658d38 (diff) | |
download | volse-hubzilla-b8370cffb9a9f69ad87d489df6b73d7daa5434c0.tar.gz volse-hubzilla-b8370cffb9a9f69ad87d489df6b73d7daa5434c0.tar.bz2 volse-hubzilla-b8370cffb9a9f69ad87d489df6b73d7daa5434c0.zip |
move the sticky-kit^Cquery plugin to /lib and see if we want this for the whole app
Diffstat (limited to 'view/theme/redbasic')
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index c5f74db3f..c3c2c7e3f 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -16,6 +16,23 @@ $(document).ready(function() { } $('#css3-calc').remove(); // Remove the test element + if($(window).outerWidth() > 767) { + $('#left_aside_wrapper').stick_in_parent({ + offset_top: $('nav').outerHeight(true) + }); + } + + $(window).resize(function() { + if($(window).outerWidth() > 767) { + $('#left_aside_wrapper').stick_in_parent({ + offset_top: $('nav').outerHeight(true) + }); + } + else { + $('#left_aside_wrapper').trigger("sticky_kit:detach"); + } + }); + $('#expand-aside').click(function() { $('#expand-aside-icon').toggleClass('fa-arrow-circle-right').toggleClass('fa-arrow-circle-left'); $('main').toggleClass('region_1-on'); |