Skip to content

Commit ee1fdfc

Browse files
KoddrKoddr
Koddr
authored and
Koddr
committed
Bug fixes
1 parent 321c48e commit ee1fdfc

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![goodshare.js logo github](http://goodshare.ru/assets/images/goodshare-logo-github-v3.jpg)
1+
![goodshare.js logo github](https://koddr.me/images/projects/goodshare.js-logo-github.jpg)
22

33
# goodshare.js [![GitHub version](https://badge.fury.io/gh/koddr%2Fgoodshare.js.svg)](https://badge.fury.io/gh/koddr%2Fgoodshare.js)
44

dist/providers/Pinterest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var Pinterest = function () {
4747
key: 'getCounter',
4848
value: function getCounter() {
4949
var script = document.createElement('script');
50-
var count_url = 'http://api.pinterest.com/v1/urls/count.json?callback=receiveCount&url=' + this.url;
50+
var count_url = 'https://api.pinterest.com/v1/urls/count.json?callback=receiveCount&url=' + this.url;
5151

5252
window['receiveCount'] = function (counter) {
5353
document.body.querySelectorAll('[data-counter=pinterest]').forEach(function (item) {

goodshare.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "goodshare.js",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "Useful modern JavaScript solution that will help your website visitors share a link on social networks and microblogs. Easy to install and configuring on any of your website!",
55
"main": "goodshare.min.js",
66
"scripts": {
@@ -19,7 +19,7 @@
1919
"bugs": {
2020
"url": "https://github.com/koddr/goodshare.js/issues"
2121
},
22-
"homepage": "https://github.com/koddr/goodshare.js#readme",
22+
"homepage": "https://koddr.me/projects/goodshare-js",
2323
"devDependencies": {
2424
"babel-cli": "^6.18.0",
2525
"babel-polyfill": "^6.20.0",

src/goodshare.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright (c) 2016 Koddr https://koddr.me
44
* http://opensource.org/licenses/MIT The MIT License (MIT)
55
*
6-
* goodshare.js v4.0.1 at 22/12/2016 (23:50)
6+
* goodshare.js v4.0.2 at 22/12/2016 (23:50)
77
*
88
* Useful modern JavaScript solution that will help your website visitors share a
99
* link on social networks and microblogs. Easy to install and configuring on

src/providers/Pinterest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Pinterest {
3434

3535
getCounter() {
3636
let script = document.createElement('script');
37-
let count_url = 'http://api.pinterest.com/v1/urls/count.json?callback=receiveCount&url=' + this.url;
37+
let count_url = 'https://api.pinterest.com/v1/urls/count.json?callback=receiveCount&url=' + this.url;
3838

3939
window['receiveCount'] = (counter) => {
4040
document.body

0 commit comments

Comments
 (0)