This repository was archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Broken with Angular 1.3.0-beta-16 #124
Milestone
Comments
I'm getting the same issue. // app.js
$sce.enabled(false);
// view.html
<div ui-select ng-model="$parent.state">
<div ui-select-match placeholder="Choose Your State">
{{ state.name }}
</div>
<div ui-select-choices repeat="state in states | filter:{ name: $select.search }">
<span ng-bind-html="state.name | highlight:$select.search"></span>
</div>
</div> |
I think this error comes from line 244 when the This looks similar to the issue 750 on angular-strap. |
You are correct @guzart. The solution is to call the
or
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm attempting to implement the ui-select with Angular 1.3.0-beta-16, and I'm receiving the following error:
https://docs.angularjs.org/error/$rootScope/inprog?p0=$apply
Apparently, manually calling $apply is no longer allowed? I know that this is a bleeding edge version, so nothing is guaranteed to work. However, I figured I'd let you know, since it may, indeed, be a permanent change which will affect your code.
P.S. The issue is with angular-santize.js, as switching out angular.js, alone, does not cause the error.
The text was updated successfully, but these errors were encountered: