Created
August 21, 2014 13:13
-
-
Save jurgens/54520bcc06ac4ed38662 to your computer and use it in GitHub Desktop.
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
Wondr.Views.Header = Backbone.Marionette.ItemView.extend | |
el: 'header' | |
update_state: (current) -> | |
@$('#primary li').removeClass('current') | |
@$("#primary li.#{current}").addClass('current') if current? | |
init: -> | |
$( '.account' ).makisu({ | |
selector: 'li', | |
overlap: 0.2, | |
speed: 0.3 | |
}); |
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
initialize: -> | |
... | |
@header = new Wondr.Views.Header | |
@header.init() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment