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
| /* | |
| The view.$el property is equivalent to $(view.el) and view.$(selector) is equivalent to $(view.el).find(selector) | |
| */ | |
| view.$(selector) |
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
| git add -u | |
| git add --all | |
| cat .gitignore | |
| git add --force | |
| --update from origin | |
| git pull origin |
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
| .text-replace() { | |
| text-indent: 100%; | |
| white-space: nowrap; | |
| overflow: hidden; | |
| } | |
| #grid-w { | |
| font-size: 0; | |
| .col-w(@xPerc){ | |
| font-size: @baseFontSize; |
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
| //Object patterns extracted from the 6th chapter of The Principles of Object-Oriented JavaScript, by Nicholas C.Zakas. | |
| //http://shop.oreilly.com/product/9781593275402.do |