From 32c5909630832e02eb1014e4e518010611cb8cf3 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Thu, 14 Apr 2022 20:58:09 +0300 Subject: [PATCH] tweaks... Signed-off-by: Alex A. Naanou --- pwiki2.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pwiki2.js b/pwiki2.js index 156348a..4faad81 100755 --- a/pwiki2.js +++ b/pwiki2.js @@ -207,14 +207,17 @@ function(name){ var page = module.page = { store: undefined, + path: undefined, + referrer: undefined, + text: undefined, + // relative proxies to store... exists: relProxy('exists'), match: relProxy('match'), // XXX should this return page objects??? get: relProxy('get'), - update: function(path='.', data, mode){ if(arguments.length == 1){ data = path @@ -225,8 +228,6 @@ module.page = { // XXX clear: function(){ }, - expand: function(){ - }, }