You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apparently, then compilation-time debugging is disabled in angular (recommended in production), the directives stop working because they rely on a missing function for getting element's scope.
This only causes trouble if this kind of code is used:
.config(['$compileProvider', function ($compileProvider) {
$compileProvider.debugInfoEnabled(false);
}])