Skip to content

Commit

Permalink
fix open var
Browse files Browse the repository at this point in the history
  • Loading branch information
arnauddorgans committed Jan 3, 2018
1 parent 075fb6c commit c125f52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion InfiniteLayout.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions InfiniteLayout/Classes/InfiniteCollectionView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit c125f52

Please sign in to comment.