diff options
author | prashantsinalkar | 2018-08-15 23:22:57 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-08-15 23:22:57 +0530 |
commit | c203fcb7df9ef3853d7842a9083609b4725032ca (patch) | |
tree | 87650aa5f6bab356d83bb8b15984a52d10b6d52b /static/website/bootstrap-css/assets/js/main.js | |
parent | 2c3046ffa4d454195f18b61b25e5213c3cc27a5e (diff) | |
download | SciPy2018-c203fcb7df9ef3853d7842a9083609b4725032ca.tar.gz SciPy2018-c203fcb7df9ef3853d7842a9083609b4725032ca.tar.bz2 SciPy2018-c203fcb7df9ef3853d7842a9083609b4725032ca.zip |
added custom css class for other than home page tempates
Diffstat (limited to 'static/website/bootstrap-css/assets/js/main.js')
-rw-r--r-- | static/website/bootstrap-css/assets/js/main.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/static/website/bootstrap-css/assets/js/main.js b/static/website/bootstrap-css/assets/js/main.js index 66a2645..bb476df 100644 --- a/static/website/bootstrap-css/assets/js/main.js +++ b/static/website/bootstrap-css/assets/js/main.js @@ -12,13 +12,20 @@ $(window).load(function(){ function handleTopNavAnimation() { var top=$(window).scrollTop(); - + if($('#home').attr("data") == 'home'){ if(top>10){ + $('#site-nav').addClass('navbar-solid'); } else{ $('#site-nav').removeClass('navbar-solid'); } + } + else{ + $('#site-nav').addClass('navbar-solid-other'); + $("a").removeAttr("data-scroll"); + } + } /* @@ -66,4 +73,4 @@ $('#registration-form').submit(function(e){ * SmoothScroll */ -smoothScroll.init();
\ No newline at end of file +smoothScroll.init(); |