// jQuery
$(document).ready(function() {
// code
})
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
| function ObserverMovieList(){ | |
| this.observerMovieList=[] | |
| } | |
| ObserverMovieList.prototype.add = function(obj){ | |
| return this.observerMovieList.push(obj); | |
| }; | |
| ObserverMovieList.prototype.count = function(){ | |
| return this.observerMovieList.lenght; | |
| }; | |
| ObserverMovieList.prototype.get = function(index){ |
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> | |
| <head> | |
| </head> | |
| <body> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js"></script> | |
| <script src="http://cloud.github.com/downloads/wycats/handlebars.js/handlebars-1.0.0.beta.6.js"></script> | |
| <script id="template" type="text/x-handlebars-template"> | |
| <div>Test Template</div> | |
| <p>Name: {{name}}</p> | |
| </script> |