- automate accessibility & readability with Bas
- hack around with currentColor & em sizing for childless components
- help out on Sass & Compass issues
- build something with Hoodie
- Do some client side only timezone stuff
- Infinite scroll! http://nmjenkins.com/presentations/infinite-win.html
- Macros (do something around logging?) http://ryanseddon.github.io/sweetjs-talk/
- Bootcamp https://github.com/thejameskyle/bootcamp
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
<!-- this partial takes a boolean "respond" argument --> | |
<div class="<%= respond ? "widget--respond" : "widget" %>"> | |
... | |
</div> |
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
Rockstar: Liberal Teen | |
- looks like they're fun to be around | |
- hard worker | |
- so much on their plate right now! | |
- studying the course they always wanted to, seems to be going really well | |
- works a few nights a month to earn cash for maccas and pizza | |
- movies with mates are becoming less | |
- big, bad world creeping in! | |
- study, work & resumes taking over | |
- secretly dreams of playing at a higher level |
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
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.7) | |
// ---- | |
$ie7: false | |
$resp: true | |
body | |
// Output MQs |
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
<div class="parent"> | |
<div class="parent__children"> | |
<div class="child"></div> | |
<div class="child--modified"></div> | |
</div> | |
</div> |
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
<div class="gallery"> | |
<div class="gallery__item"> | |
<div class="photo"></div> | |
</div> | |
<div class="gallery__item"> | |
<div class="video"></div> | |
</div> | |
<div class="gallery__item"> | |
<div class="audio"></div> | |
</div> |
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
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
$unquoted-string: unquote("foo") | |
$quoted-string: quote(foo) | |
body | |
background: $unquoted-string == $quoted-string |
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
// ---- | |
// Sass (v3.3.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
.parent-class { | |
&.dropdown-toggle { | |
color: red; | |
} | |
} |
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
<div class="parent-class dropdown-toggle">Hi</div> | |
<div class="dropdown-toggle parent-class">Hi</div> |
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
var views = { | |
foo: function($el, el, props) { | |
console.log(props); | |
}, | |
bar: function($el, el, props) { | |
console.log(props); | |
} | |
}; | |
viewloader.execute(views); |