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
// | |
// Automatically calls all functions in APP.init | |
// | |
jQuery(document).ready(function() { | |
APP.go(); | |
}); | |
// | |
// Module pattern: | |
// http://yuiblog.com/blog/2007/06/12/module-pattern/ |
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
/* It would be fantastic if we had a way to iterate through arguments or escape to JS? | |
From This */ | |
@CSS3: box-shadow, transform, border-radius; | |
.transition-property(@CSS3); | |
/* Or This */ | |
.transition-property(box-shadow, transform, border-radius); | |
/* To This */ |
NewerOlder