Encountering this error message:
[$parse:ueoe] Unexpected end of expression: move(
When using this snippet of code:
<button type="button" ng-click="move(-1)" tabindex="-1">
Could there be a syntax issue with move(-1)
in AngularJS?
On a side note, errors seem to arise whenever a minus sign is included in an Angular expression. For instance,
<span data-ng-click=" order('-name') " data-ng-class="{active: column == '-name'}">
is generating a different error: Lexer Error: Unterminated quote at columns 6-7 ['] in expression [order(']
.
Based on my research, it appears that these are not syntax errors. Is there another underlying issue at play here?