Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. application.view.AddressView = application.view.BaseView.extend({
  2. init: function(){
  3. // init one
  4. }
  5. });
  6.  
  7. application.view.SubAddressView = application.view.AddressView.extend({
  8. init: function(){
  9. // init two
  10. application.view.AddressView.prototype.init.apply(this, _.values(arguments));
  11. }
  12.  
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement