RomanAkhma

Results 2 issues of RomanAkhma

How to reproduce: ```javascript // initialize $('.sidebar').stickySidebar(); // destroy $('.sidebar').stickySidebar('destroy'); // initialize again $('.sidebar').stickySidebar(); // ... and nothing happens ``` You can't reinitialize StickySidebar because `$('.sidebar').data('stickySidebar')` contains previous instance; `.stickySidebar('destroy')`...

How to reproduce: ```javascript $('.sidebar') .on('affix.bottom.stickySidebar', function handler() { // This handler will never be called }) .stickySidebar(); ``` StickySidebar events contains dots in their type. jQuery use dot as...