Skip to content

Releases: akempes/angular-rateit

The callback function binding has changed form two-way to method binding

06 Oct 23:25
Compare
Choose a tag to compare

The callback function binding has changed form two-way to method binding. This will allow you to pass your own variables to the callback function AND the current rating is passed in the rating parameter:

<ng-rate-it ng-model="model.basic" rated="myCallback(rating, 'Your own var')"></ng-rate-it>
$scope.myCallback = function (rating, cusotmVar) {
	console.log(rating, customVar);
}

To upgrade from v3 to v4, just add () after your function name.

Removed module variable

26 Jun 23:00
Compare
Choose a tag to compare

Fixed flickering

20 Jun 19:36
Compare
Choose a tag to compare

Fixed #10 stars flicker when clicked on

Dist files update

11 Jul 19:32
Compare
Choose a tag to compare
3.0.2

Dist files update

3.0.0 Refactored HTML and CSS for mobile divices

08 Jul 23:07
Compare
Choose a tag to compare
  • BREAKING: The over callback is removed.
  • BREAKING: If you're using your own template, you need to update it.
  • Template and CSS file are refactored in order to support mobile divices.
  • Moved calculations from template to controller.

Fixed getBoundingClientRect

31 Dec 13:56
Compare
Choose a tag to compare

Fix incorrect hover value

30 Nov 21:07
Compare
Choose a tag to compare
2.0.4

New release

2.0.3

21 Jul 19:33
Compare
Choose a tag to compare
I just keep forgetting to update the version numbers...

2.0.2

21 Jul 19:13
Compare
Choose a tag to compare
Fix to prevent `missing "ignore" entry` warning

Package and bower file updated

21 Jul 17:39
Compare
Choose a tag to compare
2.0.1

Forgot to update package.json and bower file