Last active
August 29, 2015 14:16
-
-
Save seanmcgary/a95ba535208648e16dc0 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
| application.view.AddressView = application.view.BaseView.extend({ | |
| init: function(){ | |
| // init one | |
| } | |
| }); | |
| application.view.SubAddressView = application.view.AddressView.extend({ | |
| init: function(){ | |
| // init two | |
| application.view.AddressView.prototype.init.apply(this, _.values(arguments)); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment