I am using Angular Timer http://siddii.github.io/angular-timer/examples.html#/angularjs-single-timer
But I can't update the countdown variable. I see that I'm not the only one having this issue. I tried some "solutions" but this didn't work. What is the best way to make it work? Don't want to make a new countdown because this timer directive has a lot of features that I need. It's just that I can't update the countdown from a controller.
I have a select updating content which works perfect, except for the timer, I've added different time values
$scope.typeWods = [
{ label: 'EMOM', value: 1, time: 500 },
{ label: 'TABATA', value: 2, time: 900 },
{ label: 'POR VUELTAS', value: 3, time: 800 },
{ label: 'AMRAP', value: 4, time: 1200 },
{ label: '21-15-9', value: 5, time: 700 }
];
The variable is updated, but the countdown property is not. Any good solution out there? Don't know what else to try.