Skip to content

Instantly share code, notes, and snippets.

@vayn
Created November 11, 2011 12:50
Show Gist options
  • Save vayn/1357923 to your computer and use it in GitHub Desktop.
Save vayn/1357923 to your computer and use it in GitHub Desktop.
Bookmarklet for Little Book on CoffeeScript
# http://arcturo.github.com/library/coffeescript
javascript:(function(){var%20c=document.getElementById('container');c.style.width='720px';c.style.margin='0%20auto';})()
// ==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