ionic-cordova-gulp-seed
Version:
Ionic & Cordova & Gulp seed with organized code, tests, bower support and some other stuff. Originated from ionic-angular-cordova-seed.
29 lines (24 loc) • 516 B
JavaScript
angular.module('ionicApp', ['ionic'])
.controller('MainCtrl', function ($scope) {
$scope.settingsList = [
{
text: "Wireless",
checked: true
},
{
text: "GPS",
checked: false
},
{
text: "Bluetooth",
checked: false
}
];
$scope.pushNotificationChange = function () {
console.log('Push Notification Change', $scope.pushNotification.checked);
};
$scope.pushNotification = {
checked: true
};
$scope.emailNotification = 'Subscribed';
});