PageRenderTime 74ms CodeModel.GetById 30ms RepoModel.GetById 1ms app.codeStats 0ms

/emacs.d/jeg2/snippets/js-mode/backbone/collection.yasnippet

https://github.com/JEG2/dotfiles
Unknown | 7 lines | 7 code | 0 blank | 0 comment | 0 complexity | e8c641c8943847efac2a1e7724353439 MD5 | raw file
  1. # -*- mode: snippet -*-
  2. # name: Backbone.Collection
  3. # key: col
  4. # --
  5. ${1:$(if (> (length yas-text) 0) "var " "")}${1:window.${2:Name}}${1:$(if (> (length yas-text) 0) " = " "")}Backbone.Collection.extend( {
  6. $0
  7. } );