New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ember-ui-pagination

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-ui-pagination - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

10

addon/components/ember-ui-pagination.js

@@ -34,3 +34,3 @@ import Ember from 'ember';

page: 0,
perPage: 30,
perPage: 25,
modelName: '',

@@ -100,4 +100,7 @@ isLoaded: false,

loadMore: function (isOpposite) {
var canLoadMore = this.get('canLoadMore');
if (canLoadMore && !isOpposite) {
var canLoadMore = this.get('canLoadMore'),
isLoadingMore = this.get('isLoadingMore');
if (!isLoadingMore && canLoadMore && !isOpposite) {
this.set('isLoadingMore', true);
this.incrementProperty('page');

@@ -132,2 +135,3 @@ }

visibleContent.addObjects(loadedData);
component.set('isLoadingMore', false);
});

@@ -134,0 +138,0 @@ }),

@@ -8,9 +8,11 @@ 'use strict';

// not specified (since that doesn't actually matter
// to us
},
afterInstall: function() {
this.addBowerPackageToProject('jquery.inview');
this.addBowerPackageToProject('comma-separated-values');
var that = this;
return this.addBowerPackageToProject('comma-separated-values').then(function() {
return that.addBowerPackageToProject('jquery.inview.zuk');
});
}
};

@@ -13,5 +13,6 @@ /* jshint node: true */

this.app.import(app.bowerDirectory + '/comma-separated-values/csv.js');
this.app.import(app.bowerDirectory + '/protonet/jquery.inview/jquery.inview.min.js');
this.app.import(app.bowerDirectory + '/jquery.inview.zuk/jquery.inview.min.js');
}
};
{
"name": "ember-ui-pagination",
"version": "0.1.2",
"version": "0.1.3",
"description": "Ember UI pagination",

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc