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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>YUI App Framework Test Page</title> | |
| <meta name="description" content="" /> | |
| <meta name="author" content="Mike Britton" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=no" /> |
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 productCollection = {}; | |
| var eventMediator = {}; | |
| var viewUtils = new utils(); | |
| window.products = new Products(); | |
| window.product; | |
| window.CartView = Backbone.View.extend({ | |
| template : _.template(viewUtils.getTemplate('Cart')), | |
| render : function(eventName) { |
NewerOlder