mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-28 17:42:44 +00:00
Restructure Sass files and folders for proper application Sass development
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
angular.module('progressCircularDemo1', ['ngMaterial'])
|
||||
.controller('AppCtrl', ['$scope', '$interval',
|
||||
function($scope, $interval) {
|
||||
$scope.mode = 'query';
|
||||
$scope.determinateValue = 30;
|
||||
|
||||
$interval(function() {
|
||||
$scope.determinateValue += 1;
|
||||
if ($scope.determinateValue > 100) {
|
||||
$scope.determinateValue = 30;
|
||||
}
|
||||
}, 100, 0, true);
|
||||
}
|
||||
]);
|
||||
Reference in New Issue
Block a user