Created
July 18, 2014 07:14
-
-
Save nazoking/90696699c34269d82958 to your computer and use it in GitHub Desktop.
githubとgitbucketで使えるLGTMブックマークレット
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
javascript:(function () { | |
jQuery.getJSON("http://www.lgtm.in/g", function (data) { | |
var oldMessage = jQuery("textarea[name=\"comment[body]\"],#content").val(); | |
var msg = data.markdown; | |
jQuery("textarea[name=\"comment[body]\"],#content").val(oldMessage + "" + msg); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment