Changelog.

master
Artem Sapegin 2014-02-03 12:09:25 +04:00
parent 7d80f6a652
commit 849a3e0264
2 changed files with 20 additions and 1 deletions

View File

@ -1,3 +1,17 @@
### 2014-02-03 v3.0.0
* New skins: Flat and Birman.
* `zeroes` option.
* `ready.social-likes` event.
* `counter.social-likes` fires on zeroes too.
* Reduce flickering couters on page load.
* Ability to pass options to `$.socialLikes()` jQuery method (by [@albburtsev](https://github.com/albburtsev)).
* Internal counter for Google+ button (uses Yandex).
* Remove search links on counters.
* Remove LiveJournal button.
* Remove IE7 support.
* Lots other improvements and refactorings.
### 2013-12-23 v2.0.13
* `searchUrl` option (by [@pivchanskiy](https://github.com/pivchanskiy)).

View File

@ -89,6 +89,10 @@ HTML code for LiveJournal button. By default <A> tag with link to current page.
Disables “likes” counters when “no”. Default: “yes”.
`zeroes`
Show counters even when number is `0`. Default: “no”.
`single-title`
Share button title for “single button” mode. Default: “Share”.
@ -111,7 +115,8 @@ Examples:
$('.social-likes').socialLikes({
url: 'https://github.com/sapegin/social-likes/',
title: 'Beautiful “like” buttons with counters for popular social networks',
counters: true
counters: true,
singleTitle: 'Share it!'
});
```