Created
August 8, 2013 17:36
-
-
Save bsoist/6186807 to your computer and use it in GitHub Desktop.
My tweeting verbs for Fargo
This file contains hidden or 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
tweetThis: function() { | |
var text = op.getLineText(); | |
bsoistVerbs.goTweet(text,null); | |
}, | |
tweetBlog: function() { | |
var text = op.getLineText(); | |
var link = op.getCursorUrl(); | |
bsoistVerbs.goTweet(text,link); | |
}, | |
tweetLink: function() { | |
var text = op.getLineText(); | |
var link = op.attributes.getOne("url"); | |
bsoistVerbs.goTweet(text,link); | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment