Commit 7a6387ec by Daniel Dahan

Fixed breaking change to loading the TabsController.

parent d34ff6c0
## 2.12.9
* Fixed breaking change to loading the TabsController.
## 2.12.8
* [issue-933](https://github.com/CosmicMind/Material/issues/933): Fixed issue where `NavigationDrawerController` was not displaying the `leftViewController` and `rightViewController`.
......
Pod::Spec.new do |s|
s.name = 'Material'
s.version = '2.12.8'
s.version = '2.12.9'
s.license = 'BSD-3-Clause'
s.summary = 'A UI/UX framework for creating beautiful applications.'
s.homepage = 'http://materialswift.com'
......
......@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.12.8</string>
<string>2.12.9</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
......
......@@ -190,7 +190,12 @@ open class TransitionController: UIViewController {
view.contentScaleFactor = Screen.scale
prepareContainer()
prepare(viewController: rootViewController, in: container)
guard let v = rootViewController else {
return
}
prepare(viewController: v, in: container)
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment