From b36b9868c582242cb7c285aa3af7f30797f477ad Mon Sep 17 00:00:00 2001 From: sisidovski Date: Thu, 12 Nov 2015 04:34:20 +0900 Subject: [PATCH] Change m.mount to m.component in sample html --- mvc.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mvc.html b/mvc.html index 74444ed2..d8a0d9ae 100644 --- a/mvc.html +++ b/mvc.html @@ -44,8 +44,8 @@ var ContactsWidget = { }, view: function(ctrl) { return [ - m.module(ContactForm), - m.module(ContactList) + m.component(ContactForm), + m.component(ContactList) ] } }