HTML and CSS Reference
In-Depth Information
js/app/utility/validator.js
js/app/utility/layout.js
js/app/utility/deck.js
js/app/utility/jsonp.js
js/app/type/format.js
js/app/type/releaseDate.js
js/app/model/actor.js
js/app/model/movie.js
js/app/model/video.js
js/app/model/videosource.js
js/app/view/movie.js
js/app/view/movielistitem.js
js/app/view/movielist.js
js/app/controller/movies.js
js/app/controller/favorites.js
js/app/bootstrap.js
Save the file and remove the current list of JavaScript files from the bottom of
index.html .
The following code snippet shows how this should now look.
...
<!-- Load the applications JavaScript -->
<script src="js/app.dev.js"></script>
<script>
app.bootstrap.initScripts();
</script>
</body>
</html>
If you refresh your mobile browser, everything should be working correctly.
Minifying
Minifying/minification is the process of removing as much white space and
comments as possible from your code. It sounds silly, but that extra data can
account for a large part of your JavaScript's file size.
 
Search WWH ::




Custom Search