Created
March 17, 2013 14:54
-
-
Save davidvanleeuwen/5181909 to your computer and use it in GitHub Desktop.
Navigation
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
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