Removed motionprint in gem file, it's not required. Fixed bug in sample app

This commit is contained in:
Todd Werth
2014-11-17 19:25:02 -08:00
parent 6bc15e3d8f
commit 0f3e1d0a15
3 changed files with 2 additions and 7 deletions

View File

@@ -88,12 +88,11 @@ class MainController < UIViewController
end
rmq.append(UIButton, :collection_button).on(:touch_up) do
controller = CollectionController.new
rmq.view_controller.navigationController.pushViewController(controller, animated: true)
rmq.view_controller.navigationController.pushViewController(CollectionController.new, animated: true)
end
rmq.append(UIButton, :table_button).on(:touch_up) do
rmq.view_controller.navigationController.pushViewController(controller, animated: true)
rmq.view_controller.navigationController.pushViewController(TableController.new, animated: true)
end
rmq.append(UIButton, :present_button).on(:touch_up) do