I hereby claim:
- I am jameshopkins on github.
- I am jameshopkins (https://keybase.io/jameshopkins) on keybase.
- I have a public key ASD9KvWSS2LHFfSMQhS6R38Fk7bEhRituTjNfKT1_SHICQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
boot2docker ssh 'sudo /etc/init.d/docker restart'
docker run -i -t [IMAGE] "/bin/bash"
##Implementation issues
###How do we expose declaration blocks from at rules?
CSSMediaRule instances could be exposed as flags through the content
property of a pseudo element (applied to html
/body
?), and consumed through getComputedStyle
. What about other forms?
###How do we deal with merging property shorthands? { background: red }, { background: url('...') yellow }
/** | |
* Return an event type array for a jQuery object. | |
* | |
* Credit to http://stackoverflow.com/users/511795/shanimal | |
*/ | |
// Return an arry of 'scroll' events attached to 'window' | |
$._data($(window).get(0), "events").scroll |
# Assumes your current directory is where your CSS files live. | |
for f in *.css; do git mv ${f%.css}.css [SASS DIR]/${f%.css}.scss; done; |