Socket
Socket
Sign inDemoInstall

@zestia/ember-simple-infinite-scroller

Package Overview
Dependencies
397
Maintainers
3
Versions
47
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 8.0.0 to 8.0.1

11

addon/components/infinite-scroller.js
import Component from '@glimmer/component';
import { resolve } from 'rsvp';
import { debounce, cancel, scheduleOnce } from '@ember/runloop';

@@ -143,10 +144,10 @@ import { action } from '@ember/object';

async _loadMore() {
_loadMore() {
this.isLoading = true;
await this._invokeAction('onLoadMore');
resolve(this._invokeAction('onLoadMore')).finally(() => {
this.isLoading = false;
this.isLoading = false;
this._scheduleCheckScrollable();
this._scheduleCheckScrollable();
});
}

@@ -153,0 +154,0 @@

# Changelog
## 8.0.1
- Make sure component is not in a loading state if there is a failure to load more.
## 8.0.0

@@ -4,0 +8,0 @@

{
"name": "@zestia/ember-simple-infinite-scroller",
"version": "8.0.0",
"version": "8.0.1",
"description": "Simple infinite scroller component for Ember apps",

@@ -5,0 +5,0 @@ "directories": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc