- A this allows people to comment on pull requests and include long snippets of code without making the discussion a mile and a half long.
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
| # Jake Archibald In The Loop: | |
| Does this create cause the element to flash for a brief millisecond? | |
| ```js | |
| document.body.appendChild(el); | |
| el.style.display = none' | |
| ``` | |
| No. There's no race condition. All this code takes place before a rendering is ever triggered. |
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
| syntax on | |
| set nocompatible | |
| set number | |
| set tabstop=2 | |
| set shiftwidth=2 | |
| set expandtab | |
| set swapfile | |
| set dir=~/tmp | |
| set hlsearch | |
| filetype indent plugin on |
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
| --ignore-file=ext:map | |
| --ignore-file=ext:sql | |
| --ignore-file=ext:log | |
| --ignore-dir=dist | |
| --ignore-dir=public | |
| --ignore-dir=bower_components | |
| --ignore-dir=node_modules | |
| --ignore-dir=tmp | |
| --ignore-dir=vendor |
NewerOlder