Skip to content

Commit

Permalink
Merge pull request honza#324 from tUrG0n/patch-2
Browse files Browse the repository at this point in the history
Added Jade Angular Snippets
  • Loading branch information
honza committed Mar 24, 2014
2 parents 3ebeb6b + 1ffdf75 commit 4f4ad36
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions snippets/jade.snippets
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Angular HTML
snippet rep
div(ng-repeat='${1} in ${2}')

snippet repf
div(ng-repeat='${1} in ${2}' | ${3})

snippet repi
div(ng-repeat='${1} in ${2}' track by $index)

snippet hide
div(ng-hide='${1}')

snippet show
div(ng-show='${1}')

snippet if
div(ng-if='${1}')

0 comments on commit 4f4ad36

Please sign in to comment.