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
{{ message }}
This repository was archived by the owner on Sep 8, 2020. It is now read-only.
It does not appear this directive has the ability to be added conditionally. If you attempted to implement this functionality like it's implemented for required and ng-required...
This: <ul ng-model="items" ui-sortable>
Would look like this: <ul ng-model="items" ui-sortable="isSortable">
It does not appear this directive has the ability to be added conditionally. If you attempted to implement this functionality like it's implemented for
required
andng-required
...This:
<ul ng-model="items" ui-sortable>
Would look like this:
<ul ng-model="items" ui-sortable="isSortable">
Unfortunately,
ui-sortable
was designed to be able to take an optionaloptions
value. I believe this is also what makes the built-inngAttr
directive not work. https://docs.angularjs.org/guide/directive#text-and-attribute-bindingsAny way to get around this?
The text was updated successfully, but these errors were encountered: