Created
June 3, 2015 15:57
-
-
Save jcreamer898/875c7628dd9de24ca498 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
<div class="parent"> | |
<div class="child"></div> | |
<div class="child"></div> | |
<div class="child"></div> | |
<div class="child"></div> | |
<div class="child"></div> | |
</div> |
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
var Child = Backbone.View({ | |
// ... | |
}); | |
var Parent = Backbone.View({ | |
initialize: function() { | |
this.$el(".child").each(function(i, el) { | |
new Child({ | |
el: el | |
}); | |
}); | |
} | |
}); | |
var instance = new Parent({ | |
el: ".parent" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment