Closed WonSong closed 4 years ago
Happens from directives.js line: 98 when minified. determineActiveClass is undefined. Possibly due to determineActiveClass being implicitly declared.
determineActiveClass
I was able to fix this by adding var and making it explicit.
var
Turns out this was due to a type'o. When determineActiveClass is declared, it is declared as determineAciveClass with no T. I will revert my last commit and fix this typ'o.
determineAciveClass
Happens from directives.js line: 98 when minified.
determineActiveClass
is undefined. Possibly due todetermineActiveClass
being implicitly declared.I was able to fix this by adding
var
and making it explicit.