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 SelectView = Backbone.View.extend({ | |
| el: '#my-select', | |
| events: { | |
| 'change': 'addToList' | |
| }, | |
| render: function() { | |
| this.collection.each(function(item) { | |
| var optionView = new OptionView({model: item}); |
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 allTheaters = []; | |
| var nycZips = [ | |
| // Greenpoint | |
| 11211, 11222, | |
| // Bushwick & Williamsburg | |
| 11206, 11221, 11237, | |
| // Greenwich Village & Soho |
NewerOlder