Update package creation docs

This commit is contained in:
Garen Torikian 2013-04-26 13:39:24 -07:00 committed by Garen Torikian & Nathan Sobo
parent c71bccd72c
commit 14b28a8a89

View File

@ -60,6 +60,13 @@ Hitting the key binding on the tree now works!
## Working with styles
The next step is to hide elements in the tree that aren't modified. To do that,
we'll first (obviously) try and get a list of files that have changed.
we'll first (obviously) try and get a list of files that have not changed.
All packages are able to use jQuery in their
All packages are able to use jQuery in their code. So let's include that at the top:
```coffeescript
$ = require 'jquery'
```
Now, we can query the tree to get us a list of every file that _wasn't_ modified
using some jQuery syntax.