(Themes: default beige moon night serif simple sky solarized )
</small>
<html>
<script type=".." src="/js/jquery.js"></script>
<script type=".." src="/js/underscore.js"></script>
<script type=".." src="/js/backbone.js"></script>
<script type=".." src="/js/my/cart.js"></script>
<script type=".." src="/js/my/inventory.js"></script>
<script type=".." src="/js/my/store.js"></script>
..
<script type="..." src="/js/backbone.js"></script>
<script type="..." src="/js/my/cart.js"></script>
<script type="..." src="/js/my/inventory.js"></script>
<script type="..." src="/js/my/store.js"></script>
...
↓
Federate + Minify
↓
<script type... src="/js/my.min.js"></script>
define()
// i js/my/store.js
define(["my/cart", "my/inventory"],
function(Cart, Inventory) {
var Store = function(title) {
this.title = title;
this.inventory = new Inventory();
};
Store.prototype.getStock = function(){
return this.inventory.getLength();
};
return Store;
}
);
requirejs()
// i js/main.js
requirejs(['jquery', 'canvas', 'my/store'],
function ($, canvas, Store) {
var theStore = new Store();
theStore.init();
});
markup
// i storepage.html
<script src="js/require.js"></script>
<script src="js/main.js"></script>
… eller …
<script src="js/require.js" data-main="js/main.js"></script>
(Foiler finnes på kjarnet.no/jsibyggetpres.
Laget med reveal.js
og markdown.)