1 2 3 4 5 6 7 8 9 10 | 1× | angular.module('sliderDemo2', ['ngMaterial']) .controller('AppCtrl', function($scope) { $scope.vol = Math.floor(Math.random() * 100); $scope.bass = Math.floor(Math.random() * 100); $scope.master = Math.floor(Math.random() * 100); }); |