Skip to content

Instantly share code, notes, and snippets.

@davidvanleeuwen
Created March 17, 2013 14:54
Show Gist options
  • Save davidvanleeuwen/5181909 to your computer and use it in GitHub Desktop.
Save davidvanleeuwen/5181909 to your computer and use it in GitHub Desktop.
Navigation
define ['templates/navigation', 'views/navigation_item'], (template) ->
class Blog.Views.Navigation extends Backbone.Marionette.CompositeView
itemView: Blog.Views.NavigationItem
template: template
itemViewContainer: '.bb-items'
initialize: ->
appendHtml: (collectionView, itemView, index) ->
collectionView.$(@itemViewContainer).prepend(itemView.el)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment