mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-02 13:46:23 +00:00
17 lines
319 B
JavaScript
17 lines
319 B
JavaScript
|
|
angular.module('sliderDemo1', ['ngMaterial'])
|
|
|
|
.controller('AppCtrl', function($scope) {
|
|
|
|
$scope.color = {
|
|
red: Math.floor(Math.random() * 255),
|
|
green: Math.floor(Math.random() * 255),
|
|
blue: Math.floor(Math.random() * 255)
|
|
};
|
|
|
|
$scope.rating = 3;
|
|
$scope.disabled1 = 0;
|
|
$scope.disabled2 = 70;
|
|
|
|
});
|