Created
December 26, 2015 05:10
-
-
Save YonasBerhe/bd54e5a7966b5409e4e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('starter.controllers', ['starter.services']) | |
.controller('SessionCtrl', function ($scope, Session) { | |
scope.sessions = Session.query(); | |
}) | |
.controller('AppCtrl', function($scope, $ionicModal, $timeout) { | |
// With the new view caching in Ionic, Controllers are only called | |
// when they are recreated or on app start, instead of every page change. | |
// To listen for when this page is active (for example, to refresh data), | |
// listen for the $ionicView.enter event: | |
//$scope.$on('$ionicView.enter', function(e) { | |
//}); | |
// Form data for the login modal | |
$scope.loginData = {}; | |
// Create the login modal that we will use later | |
$ionicModal.fromTemplateUrl('templates/login.html', { | |
scope: $scope | |
}).then(function(modal) { | |
$scope.modal = modal; | |
}); | |
// Triggered in the login modal to close it | |
$scope.closeLogin = function() { | |
$scope.modal.hide(); | |
}; | |
// Open the login modal | |
$scope.login = function() { | |
$scope.modal.show(); | |
}; | |
// Perform the login action when the user submits the login form | |
$scope.doLogin = function() { | |
console.log('Doing login', $scope.loginData); | |
// Simulate a login delay. Remove this and replace with your login | |
// code if using a login system | |
$timeout(function() { | |
$scope.closeLogin(); | |
}, 1000); | |
}; | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment