Ruhley

Results 9 comments of Ruhley

Hi jamietre, The change to using an object instead of an array would be great! Exposing the API is also a great move. Keep up the good work. For the...

@blademarek The names of the formats comes from the tinycolor library - https://bgrins.github.io/TinyColor/docs/tinycolor.html. If you search for `toHexString` you will see that is where it adds the `#`. I will...

@jaydeeptops See this example [html](https://github.com/ruhley/angular-color-picker/blob/master/examples/01-simple.html) and [javascript](https://github.com/ruhley/angular-color-picker/blob/master/examples/app.js) for how to use the event api. Let me know if that helps you or not.

@jaydeeptops I think you would have to create separate event apis and do something like this ```js $scope.onChange = function (color, type) { console.log(color, type); }; $scope.eventApiA = { onChange:...

In the click event of the other button you should be able to get the value from `ng-model` without using the onChange event - https://github.com/ruhley/angular-color-picker/blob/master/examples/01-simple.html#L254 and https://github.com/ruhley/angular-color-picker/blob/master/examples/app.js#L29

I added this into my local copy of chosen because it was a requirement for my project. It was fairly easy in the end. In the `set_default_values` function I put...

This has been fixed in dc.js v2.0.0 beta 10 with https://github.com/dc-js/dc.js/pull/886/. You can now pass an array for the group option.

@lsobral I haven't maintained this repository for over a year, so there maybe some problems with it. For me example 1 in this repository works for those versions. Are you...