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
var match = expression.match(/^(\S+)(?:\s+on\s+(\w(?:\w|\d)*))?$/);
This is regexp used to find controller's scope by given controller name, but it doesn't support "controller as" syntax: ng-controller="MainCtrl as mainCtrl"
ui-scroll.js 531: var controller = candidate.attr('ng-controller');
This will make {controller} variable equal MainCtrl as mainCtrl, which you can't define as adapter expression because regexp will fail.