ember-scrollable icon indicating copy to clipboard operation
ember-scrollable copied to clipboard

A simple Ember wrapper around Trackpad Scroll Emulator

Results 33 ember-scrollable issues
Sort by recently updated
recently updated
newest added

Discovered by https://github.com/offirgolan/ember-light-table/issues/592 downstream Contributions welcome

bug

Hi, Right now this addon needs Ember's jQuery integration to be enabled as it uses `this.$()` in several places, as well as some jQuery functions. This could be refactored to...

Hi! I just installed ember-scrollable using npm i [email protected] --save and included my code into: {{#ember-scrollable onScrolledToBottom=(action 'log' 'Bottom reached!')}} ...TABLE CONTENT {{/ember-scrollable}} and got problem: ember.debug.js:2532 Uncaught TypeError: Cannot...

During infinite scroll, you trigger a loadMore event when you scroll to the bottom which will add more items into your scroll content. However, the scrollbar remains the same size...

For example when using ajax to get some text. component.js: ``` $.get({ url: 'http://server.com/get-text', dataType: 'text' }).then(data => { this.set('text', data) }); ``` component.hbs: ``` {{#ember-scrollable horizontal=true vertical=true}}{{text}}{{/ember-scrollable}} ``` It...

Please check https://alphasights.github.io/ember-scrollable/ , there is described issue: ![image](https://user-images.githubusercontent.com/20578091/49371034-ca3e3280-f6fe-11e8-8c23-3c7fd2d14ccf.png)

When the content is changed, the scroll bar size is not calculated.The previous content scroll bar size is maintained.

I am not able to get the `width` property on the scrollable area. I have made paging controls, to allow user interactions for scrolling, and I need to get the...

In case of calling the update() or recalculate() action the scrollbar is not only resized it is always moved to the top. This happens on resizing the page as well.

The scrolling does not feel like the native scrolling but rather sluggish if you open it in Safari on iOS. Reproduction: your demo page.