-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: network defined in netorks directory
- Loading branch information
1 parent
c88ff22
commit 02205eb
Showing
28 changed files
with
111 additions
and
154 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const bufferapp = (data) => { | ||
return 'http://bufferapp.com/add?text=' + data.text + '&url=' + data.url; | ||
}; | ||
|
||
export default bufferapp; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
const delicious = (data) => { | ||
return 'https://delicious.com/save?v=5&provider=' + data.provider + '&noui&jump=close&url=' + data.url + | ||
'&title=' + data.title; | ||
}; | ||
|
||
export default delicious; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const digg = (data) => { | ||
return 'http://digg.com/submit?url=' + '&title=' + data.title; | ||
}; | ||
|
||
export default digg; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const facebook = (data) => { | ||
return 'https://www.facebook.com/sharer/sharer.php?display=popup&u=' + data.url + '&title=' + data.title; | ||
}; | ||
|
||
export default facebook; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const google = (data) => { | ||
return 'https://plus.google.com/share?url=' + data.url; | ||
}; | ||
|
||
export default google; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const hackernews = (data) => { | ||
return 'http://news.ycombinator.com/submitlink?u=' + data.url + '&t=' + data.title; | ||
}; | ||
|
||
export default hackernews; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const linkedIn = (data) => { | ||
return 'https://www.linkedin.com/shareArticle?mini=true&url=' + data.url + '&title=' + data.title + '&source=' + data.source; | ||
}; | ||
|
||
export default linkedIn; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
const pinterest = (data) => { | ||
return 'https://www.pinterest.com/pin/create/button/?description=' + data.text + '&url=' + data.url + '&media=' + | ||
data.media + '&is_video=false'; | ||
}; | ||
|
||
export default pinterest; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const reddit = (data) => { | ||
return 'http://www.reddit.com/submit?url=' + data.url + '&title=' + data.title; | ||
}; | ||
|
||
export default reddit; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const stumbleupon = (data) => { | ||
return 'http://www.stumbleupon.com/submit?url=' + data.url + '&title=' + data.title; | ||
}; | ||
|
||
export default stumbleupon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const tumblr = (data) => { | ||
return 'http://www.tumblr.com/share?s=&v=3&u=' + data.url + '&t=' + data.title; | ||
}; | ||
|
||
export default tumblr; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const twitter = (data) => { | ||
return 'https://twitter.com/intent/tweet?text=' + data.text + '&url=' + data.url; | ||
}; | ||
|
||
export default twitter; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.