renamed tree and inline modules to ModeText & ModeConnections

This commit is contained in:
Bachir Soussi Chiadmi
2018-02-10 16:48:29 +01:00
parent 89d9aa6aca
commit d834e2db12
8 changed files with 97 additions and 14067 deletions
+4 -4
View File
@@ -69,15 +69,15 @@ var _RouteMenu = {
m('h3', 'Mode'),
m('ul', [
m('li', m('a', {
'href':'/'+lang+'/inline'+path[3],
'href':`/${lang}/text${path[3]}`,
oncreate : m.route.link,
onupdate : m.route.link
}, "inline")),
}, "Text")),
m('li', m('a', {
'href':'/'+lang+'/tree'+path[3],
'href':`/${lang}/connections${path[3]}`,
oncreate : m.route.link,
onupdate : m.route.link
}, "tree")),
}, "Connections")),
])
]);
}