This repository was archived by the owner on Jun 17, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ extension PagingViewController: ViewCleanable {
228228}
229229
230230extension PagingViewController : PageLoadable {
231- func shouldLoad( page page : Int ) -> Bool {
231+ func shouldLoad( page: Int ) -> Bool {
232232 switch ( options. menuControllerSet, options. lazyLoadingPage) {
233233 case ( . single, _) ,
234234 ( _, . one) :
@@ -247,7 +247,7 @@ extension PagingViewController: PageLoadable {
247247 return true
248248 }
249249
250- func isVisible( controller controller : UIViewController ) -> Bool {
250+ func isVisible( controller: UIViewController ) -> Bool {
251251 return self . childViewControllers. contains ( controller)
252252 }
253253
Original file line number Diff line number Diff line change 99import Foundation
1010
1111protocol PageLoadable {
12- func shouldLoad( page page : Int ) -> Bool
13- func isVisible( controller controller : UIViewController ) -> Bool
12+ func shouldLoad( page: Int ) -> Bool
13+ func isVisible( controller: UIViewController ) -> Bool
1414 func showVisibleControllers( )
1515 func hideVisibleControllers( )
1616}
You can’t perform that action at this time.
0 commit comments