Compare commits

..

1 Commits

Author SHA1 Message Date
Arnaud Dorgans c125f52695 fix open var 2018-01-03 11:02:50 +01:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
Pod::Spec.new do |s|
s.name = 'InfiniteLayout'
s.version = '0.1.5'
s.version = '0.1.6'
s.summary = 'Horizontal and Vertical infinite scrolling feature for UICollectionView'
# This description is used to generate tags and improve search results.
@@ -21,8 +21,8 @@ open class InfiniteCollectionView: UICollectionView {
open var centeredIndexPath: IndexPath?
@IBInspectable var isItemPagingEnabled: Bool = false
@IBInspectable var velocityMultiplier: CGFloat = 500 {
@IBInspectable open var isItemPagingEnabled: Bool = false
@IBInspectable open var velocityMultiplier: CGFloat = 500 {
didSet {
self.infiniteLayout.velocityMultiplier = velocityMultiplier
}