mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-23 05:49:31 +00:00
Restructure Sass files and folders for proper application Sass development
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
angular.module('switchDemo1', ['ngMaterial'])
|
||||
.controller('SwitchDemoCtrl', function($scope) {
|
||||
$scope.data = {
|
||||
cb1: true,
|
||||
cb4: true
|
||||
};
|
||||
|
||||
$scope.onChange = function(cbState){
|
||||
$scope.message = "The switch is now: " + cbState;
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user