Help please connect the timer plugin on the page. I connected all the necessary libraries and added a controller to my module. An example is here . The plugin itself took from here
html:
<div ng-app="HelloUserApp"> <div ng-controller="HelloUserController"> {{qw}} </div> <div class="enter-screen-inner" ng-controller="countdownController">{{timerRunning}} <timer countdown="10041" max-time-unit="'minute'" interval="1000">{{mminutes}} minute{{minutesS}}, {{sseconds}} second{{secondsS}}</timer> <timer end-time="1475488800000" language="ru" finish-callback="timerFinished()"> <div> <div>{{days}}</div> </div> <div> <div>{{hours}}</div> </div> </timer> </div> </div> js:
angular.module('HelloUserApp', []) .controller('HelloUserController', function($scope) { $scope.qw = 'qwerty'; }) .controller('countdownController', function ($scope) { $scope.timerRunning = true; $scope.timerFinished = function () { console.log('timer is finished'); }; }); There are no errors in the console, but the time is still not displayed on the screen. This is the problem.