m.module -> m.mount: fix sample code in HTML files

This commit is contained in:
Matheus Kautzmann 2015-08-28 09:07:08 -03:00
parent dfa1da0652
commit 343ffc8d36
3 changed files with 11 additions and 11 deletions

View file

@ -66,5 +66,5 @@ todo.view = function() {
};
//initialize the application
m.module(document, {controller: todo.controller, view: todo.view});
</script>
m.mount(document, {controller: todo.controller, view: todo.view});
</script>