Skip to content
This repository was archived by the owner on Mar 7, 2022. It is now read-only.

Commit 829c888

Browse files
committed
typo fix, closes #70
1 parent 469a179 commit 829c888

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-socialshare",
3-
"version": "0.2.0-beta",
3+
"version": "0.2.1-beta",
44
"description": "A social url and content sharing directive for angularjs.",
55
"authors": [
66
"Filippo Oretti <[email protected]",

dist/angular-socialshare.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
* angular-socialshare
3-
* 0.2.0-beta
3+
* 0.2.1-beta
44
*
55
* A social urls and content sharing directive for angularjs.
66
* http://720kb.githb.io/angular-socialshare
77
*
88
* MIT license
9-
* Thu Jan 14 2016
9+
* Sun Jan 24 2016
1010
*/
1111
/*global angular*/
1212
/*eslint no-loop-func:0, func-names:0*/
@@ -492,7 +492,7 @@
492492
, manageGooglePlusShare = function manageGooglePlusShare($window, $location, attrs) {
493493

494494
$window.open(
495-
'https://plus.google.com/share?text=sjsjsjs&url=' + encodeURIComponent(attrs.socialshareUrl || $location.absUrl())
495+
'https://plus.google.com/share?url=' + encodeURIComponent(attrs.socialshareUrl || $location.absUrl())
496496
, 'sharer', 'toolbar=0,status=0,width=' + attrs.socialsharePopupWidth + ',height=' + attrs.socialsharePopupHeight
497497
+ ',top=' + ($window.innerHeight - attrs.socialsharePopupHeight) / 2 + ',left=' + ($window.innerWidth - attrs.socialsharePopupWidth) / 2);
498498
}

dist/angular-socialshare.js.min.map

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

dist/angular-socialshare.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/angular-socialshare.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@
482482
, manageGooglePlusShare = function manageGooglePlusShare($window, $location, attrs) {
483483

484484
$window.open(
485-
'https://plus.google.com/share?text=sjsjsjs&url=' + encodeURIComponent(attrs.socialshareUrl || $location.absUrl())
485+
'https://plus.google.com/share?url=' + encodeURIComponent(attrs.socialshareUrl || $location.absUrl())
486486
, 'sharer', 'toolbar=0,status=0,width=' + attrs.socialsharePopupWidth + ',height=' + attrs.socialsharePopupHeight
487487
+ ',top=' + ($window.innerHeight - attrs.socialsharePopupHeight) / 2 + ',left=' + ($window.innerWidth - attrs.socialsharePopupWidth) / 2);
488488
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-socialshare",
3-
"version": "0.2.0-beta",
3+
"version": "0.2.1-beta",
44
"description": "A social urls and content sharing directive for angularjs.",
55
"homepage": "http://720kb.githb.io/angular-socialshare",
66
"keywords": [

0 commit comments

Comments
 (0)