notice.js 224 B

123456789
  1. app.controller('NoticeCtrl', function($rootScope, $scope, $http, $interval, $state, myConfig, $cookieStore) {
  2. $scope.readTime = 10;
  3. $interval(function(){
  4. if($scope.readTime > 0){
  5. $scope.readTime--;
  6. }
  7. }, 1000);
  8. })