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
HTML - Only ```ng-model``` is required. If supplying an api it must be a unique object per color picker. However the event api can be shared among color pickers.
58
58
59
59
```html
60
60
<color-picker
61
61
ng-model="color"
62
62
options="options"
63
63
api="api"
64
+
event-api="eventApi"
64
65
></color-picker>
65
66
```
66
67
Javascript
@@ -70,7 +71,6 @@ $scope.color = '#FF0000';
70
71
71
72
// options - if a list is given then choose one of the items. The first item in the list will be the default
0 commit comments