mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
29 lines
516 B
JavaScript
29 lines
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';
|
|
|
|
}); |