我试图阻止角度计时器功能停止作为默认值,但它在我的控制器内无法正常工作我尝试了这两种方法,但两种方法都无效。
$scope.timerRunning = false;
$scope.$on('$viewContentLoaded', function(){
$scope.$broadcast('timer-stop');
});
//我尝试了两种,但它不起作用。然后很难,我在插件中做了更改。
if ($scope.autoStart === undefined || $scope.autoStart === true) {
$scope.start();
}
https://raw.githubusercontent.com/siddii/angular-timer/master/dist/angular-timer.js
我将此$scope.start();
更改为$scope.stop();
如果您有任何其他选择,请分享,因为我在插件内部的更改不是好方法。