diff options
Diffstat (limited to 'StoneIsland/www/js/lib/account/PaymentView.js')
| -rw-r--r-- | StoneIsland/www/js/lib/account/PaymentView.js | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/StoneIsland/www/js/lib/account/PaymentView.js b/StoneIsland/www/js/lib/account/PaymentView.js new file mode 100644 index 00000000..a8c68267 --- /dev/null +++ b/StoneIsland/www/js/lib/account/PaymentView.js @@ -0,0 +1,33 @@ +var PaymentView = View.extend({ + + el: "#payment", + + events: { + }, + + initialize: function(){ + this.address = new AddressView () + }, + +}) + +var AddressView = View.extend({ + + template: $("#address_template").html(), + + events: { + }, + + initialize: function(){ + }, + + build: function(){ + }, + + deserialize: function(){ + }, + + serialize: function(){ + }, + +})
\ No newline at end of file |
