Skip to content

Commit 139a8f6

Browse files
committed
Change default implementatino of isUndoable to true
1 parent 2ddea46 commit 139a8f6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

KSSwipeStack.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'KSSwipeStack'
11-
s.version = '0.4.0'
11+
s.version = '0.4.1'
1212
s.summary = 'A Swift card swiping library created by Kicksort Consulting AB'
1313

1414
# This description is used to generate tags and improve search results.

KSSwipeStack/Classes/SwipableView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@ open class SwipableView: UIView {
6767
Should return whether or not the user is to be allowed to undo swiping this card.
6868
*/
6969
open func isUndoable() -> Bool {
70-
return false
70+
return true
7171
}
7272
}

0 commit comments

Comments
 (0)