apollo_developers/bower_components/angular-ui-switch/example/app.js
venbatechnologies@gmail.com 1809bcf9c9 fixed table for student details
2018-04-23 18:34:11 +05:30

13 lines
274 B
JavaScript
Executable File

angular.module('app', ['uiSwitch'])
.controller('MyController', function($scope) {
$scope.enabled = true;
$scope.onOff = true;
$scope.yesNo = true;
$scope.changeCallback = function() {
console.log('This is the state of my model ' + $scope.enabled);
};
});