Skip to content

Commit

Permalink
Merge pull request #23 from ChiliLabs/fix/issue-22
Browse files Browse the repository at this point in the history
Fixes #22
  • Loading branch information
mihailstumkins committed Apr 12, 2017
2 parents 6e56737 + da378a6 commit a8780e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHIPageControl.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'CHIPageControl'
s.version = '0.1.1'
s.version = '0.1.2'
s.summary = 'CHIPageControl is a set of cool animated page controls written in Swift to replace boring UIPageControl.'

s.ios.deployment_target = '8.0'
Expand Down
2 changes: 1 addition & 1 deletion CHIPageControl/Core/CHIBasePageControl.swift
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ import UIKit

internal func setupDisplayLink() {
self.displayLink = CADisplayLink(target: self, selector: #selector(updateFrame))
self.displayLink?.add(to: .current, forMode: .defaultRunLoopMode)
self.displayLink?.add(to: .current, forMode: .commonModes)
}

internal func updateFrame() {
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Just add the `CHIPageControl` folder to your project.

use [CocoaPods](https://cocoapods.org) with Podfile:
``` ruby
pod 'CHIPageControl', '~> 0.1.1'
pod 'CHIPageControl', '~> 0.1.2'

# individual page control
pod 'CHIPageControl/Aji'
Expand All @@ -41,7 +41,7 @@ pod 'CHIPageControl/Puya'

use [Carthage](https://github.com/Carthage/Carthage) with Cartfile
```ogdl
github "ChiliLabs/CHIPageControl" ~> 0.1.1
github "ChiliLabs/CHIPageControl" ~> 0.1.2
```


Expand Down

0 comments on commit a8780e7

Please sign in to comment.