Skip to content

Instantly share code, notes, and snippets.

@YonasBerhe
Created December 26, 2015 05:10
Show Gist options
  • Save YonasBerhe/bd54e5a7966b5409e4e9 to your computer and use it in GitHub Desktop.
Save YonasBerhe/bd54e5a7966b5409e4e9 to your computer and use it in GitHub Desktop.
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