Simple wrapper for jquery-minicolors.
Run
$ bower install minicolors-angularthen add jquery.minicolors.css, jquery.minicolors.js and minicolors.angular.js to your HTML.
Add minicolors module to your app:
angular.module('myApp', ['minicolors'])Add the directive to your input element as a class or an attribute,
and pass the options through the options attribute.
The value will be bound to your ng-model.
HTML:
input.minicolors(type="text" ng-model="color" options="{showSpeed: 50}")JS:
angular.module('myApp').controller('AppCtrl', ['$scope', function ($scope) {
$scope.color = '#dfdfdf';
}]);