Open kntmrkm opened 8 years ago
With Slidebars.js, Twitter Bootstrap affix does not works.
affix
http://getbootstrap.com/javascript/#affix
Can I use affix with Slidebars.js?
Slidebars.js
Without slidebars.css. affix works well.
This is my code.
<div id="sidebar-affix-wrapper"> <div id="sidebar-affix"> <nav id="sidebar-nav"></nav> </div> </div>
var affixElement = $('#sidebar-affix'); affixElement.affix({ offset: { top: 50, bottom: function () { return (this.bottom = $('#footer').outerHeight(true)); } } });
I'm experiencing the same issue. Any idea @adchsm?
Unfortunate to not see some information on this issue. Has @adchsm abandon support of Slidebars? I really hope not :(
With Slidebars.js, Twitter Bootstrap
affix
does not works.http://getbootstrap.com/javascript/#affix
Can I use
affix
withSlidebars.js
?Without slidebars.css.
affix
works well.This is my code.