I have installed the angular-timer module on my application.
It works fine when I use it like the examples on that page, for instance, the code below yields the correct output:
<timer start-time="1357020000000">{{days}} days, {{hours}} hours, {{minutes}} minutes, {{seconds}} seconds.</timer>
However, when I insert an expression inside the start-time attribute, I get this error
The expression {{order.lastUpdatedDate}} if used outside an attribute, correctly outputs the time in miliseconds, and if I copy-paste that result into an start-time attribute on the directive, it works!
So my guess is that this directive doesn't work with expressions... :(
I want to correct that, but I'm fairly new to Angular and I don't know how to begin.
Can anybody help me, or at least point a direction for me to research, please?