Files
ionic-framework/demos/old/modal/script.js
2014-05-27 11:21:08 -06:00

34 lines
611 B
JavaScript

angular.module('ionicApp', ['ionic'])
.controller('AppCtrl', function ($scope, $ionicModal) {
$scope.contacts = [
{
name: 'Gordon Freeman'
},
{
name: 'Barney Calhoun'
},
{
name: 'Lamarr the Headcrab'
},
];
$ionicModal.fromTemplateUrl('modal.html', function (modal) {
$scope.modal = modal;
}, {
animation: 'slide-in-up',
focusFirstInput: true
});
})
.controller('ModalCtrl', function ($scope) {
$scope.newUser = {};
$scope.createContact = function () {
console.log('Create Contact', $scope.newUser);
$scope.modal.hide();
};
});