working on gen2...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2016-09-04 12:24:57 +03:00
parent 2ab0d7b404
commit 8d968cf00a
3 changed files with 30 additions and 4 deletions

2
bootstrap.js vendored

File diff suppressed because one or more lines are too long

View File

@ -19,9 +19,11 @@
</h1> </h1>
<br> <br>
<div>
<slot name="page-content"> <slot name="page-content">
<include src=".." class="text" saveto=".." tabindex="0"/> <include src=".." class="text" saveto=".." tabindex="0"/>
</slot> </slot>
</div>
<hr> <hr>
<a href="#/">home</a> <a href="#/">home</a>

View File

@ -602,5 +602,29 @@ var pWikiPouchDBStore = pWikiFeatures.Featre({
/*********************************************************************/
// XXX should this extend pWiki or encapsulate???
var pWikiUIActions = actions.Actions({
config: {
},
// XXX navigation...
up: ['', function(){}],
down: ['', function(){}],
left: ['', function(){}],
right: ['', function(){}],
toggleEdit: ['', function(){}],
togglePages: ['', function(){}],
})
var pWikiUI = pWikiFeatures.Featre({
title: '',
tag: 'ui',
})
/********************************************************************** /**********************************************************************
* vim:set ts=4 sw=4 : */ return module }) * vim:set ts=4 sw=4 : */ return module })