swipe-action icon indicating copy to clipboard operation
swipe-action copied to clipboard

A Polymer element providing a declarative way to swipe DOM elements with configurable underlays and trigger some action when the swiping is done. Integrates seamlessly with the <iron-list> element.

Results 8 swipe-action issues
Sort by recently updated
recently updated
newest added

The component seems to not work on Polymer 2.0. The reason that i could understand was the change of the tag to and their behaviour. Since I'm using this component...

A variety of bug fixes to close #7 and close #6 and close #5 and fix a translation bug on a fast movement. This is used in my project but...

When `activatedActionId` is set to a falsey value like "" or 0 then as per the `_onActivatedActionIdChange` function (line 421 as of the current release version): ```javascript _onActivatedActionIdChange: function(newValue, oldValue)...

In a few places `this._currentAction` is accessed without checking if it is null first, such as in `_swipeUpdate`, `_swipeEnd`, `_applyGestureTranslation` (called by `_swipeStart`), and `_applyRubberBand` (called by `_applyGestureTranslation`). Normally you'd...

Using Chrome (current version) on Android 6 (untested on others) the demo page, say at https://beta.webcomponents.org/element/vguillou/swipe-action/demo/demo/index.html go down to the `` example (though it does it on all, just using...

Specifically it is causing an access of `undefined` because on this line in swipe-action.html: ```javascript // Line 388 as of the latest release, inside the function activateAction var actionToActivate =...

To make more efficient updating, can a 'key' attribute or so be added to this, just whenever it changes from its previous value then reset the state of this? This...

@vguillou I want to use left swipe to open an underlay and right swipe to close it. Is it possible?

enhancement