From 6e35cc54bd06fb17e926ea04e0ef22973436b743 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Sun, 6 Oct 2013 15:31:56 -0500 Subject: [PATCH] Toderp uses modal again. --- example/toderp2/js/controllers.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/example/toderp2/js/controllers.js b/example/toderp2/js/controllers.js index 0f57763786..7c299122b6 100644 --- a/example/toderp2/js/controllers.js +++ b/example/toderp2/js/controllers.js @@ -57,7 +57,8 @@ angular.module('ionic.todo.controllers', ['ionic.todo']) }; $scope.showLogin = function() { - //$scope.loginModal && $scope.loginModal.show(); + $scope.loginModal && $scope.loginModal.show(); + /* ActionSheet.show({ buttons: [ { text: 'Option 1' }, @@ -78,6 +79,7 @@ angular.module('ionic.todo.controllers', ['ionic.todo']) return true; } }); + */ }; })