Created
November 11, 2011 12:50
-
-
Save vayn/1357923 to your computer and use it in GitHub Desktop.
Bookmarklet for Little Book on CoffeeScript
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
# http://arcturo.github.com/library/coffeescript | |
javascript:(function(){var%20c=document.getElementById('container');c.style.width='720px';c.style.margin='0%20auto';})() |
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
// ==UserScript== | |
// | |
// @name CoffeeBook | |
// @namespace http://www.webmonkey.com | |
// @description GMScript for Little Book on CoffeeScript | |
// @include http://arcturo.github.com/library/coffeescript/* | |
// | |
// ==/UserScript== | |
// | |
var container =document.getElementById('container') | |
container.style.width='720px' | |
container.style.margin='0 auto' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment