angular-swing icon indicating copy to clipboard operation
angular-swing copied to clipboard

AngularJS directive for Swing: A swipeable cards interface. The swipe-left/swipe-right for yes/no input. As seen in apps like Jelly and Tinder, and many others.

Results 18 angular-swing issues
Sort by recently updated
recently updated
newest added

Created simple factory to fetch Swing.js Card objects. Also implemented simple buttons to example to throw cards left and right.

`card.throwOut` is not animating the card.

I'm using angular swing in an ionic app. It works perfectly so far. But currently I have the issue that I can't throw out cards in any direction. They just...

I can detect swing right and I'm calling: ``` onThrowOut(event: any) { if (event.throwDirection === Direction.RIGHT) { const targetId = Number(event.target.id); const targetCampain = this.ads.find(ad => ad.id === targetId); this.openCampaign(targetCampain);...

I tried to install by `bower install angular-swing --save`, but bower throws two errors: ```bower invalid-meta The "description" is too long, the limit is 140 characters``` ```bower invalid-meta The "main"...

@gajus currently there's no [tags](https://github.com/gajus/angular-swing/tags) in this repo, so it's difficult to find the changes between versions. Also currently npm only holds v1.0.0 of angular-swing. Please publish the v2 versions....

In your example, after adding/removing a card, the `$scope.$digest()` needs to be called. Otherwise changes are not reflected, at least in Angular 1.4 in my case..

It would be great if we could specify a sort, rather than automatically having the list of cards be reversed. This would be particularly helpful when the data backing the...

Is it possible to ignore swiping vertical or horizontal and let swipe card element retrieve event?