mb-scrollbar
mb-scrollbar copied to clipboard
Custom scrollbar plugin for AngularJS
Got any ideas on this? I'm testing some use cases right now. You'd probably want to mimic native scrolling functionality by making the deepest object scroll, and prevent propagation upward.
if (typeof MutationObserver === 'function' ) { var observer = new MutationObserver(function (mutations) { // delay recalculation, prevent recalculation before animation ends setTimeout(function () { recalculate(); }, 200); }); observer.observe(element[0],...
I am using mb-scrollbar in one of my projects, it works fine for all the browsers except for firefox, during scroll we can notice the lag and the scroll is...
Hi, Using your scrollbar on my app and it works really nice, really easy to implement. I have a problem with a table that contains 200 results and thus is...
Hi, I am using IE 10 for the development. For case of large amount of elements; browser is taking alot of time to calculate scrollheight and offset height of the...
We need pagination feature when user scroll down. Kindly review and enable the pull request.
I think you need to off() the event handlers on document. Line 238, I added the below code in my version, also you need to unregister the MutationObservers. ``` //Remove...
Is it real to use this module to replace default scrollbar in textarea? if yes then how?
I think this part has to be like this, otherwise it doesn't work on browser 'which doesn't support MutationObserver and autoResize = false' at all. --- ``` if (typeof MutationObserver...
When using mb-scrollbar with requirejs, `angular` is undefined.