Cover page is now working

This commit is contained in:
Yukai Huang 2016-10-10 10:14:17 +08:00
parent 8cd1cf30a5
commit 20f2e27350
5 changed files with 32 additions and 11 deletions

View file

@ -3,6 +3,7 @@ var store = require('store');
var common = require('./common');
var checkIfAuth = common.checkIfAuth;
var urlpath = common.urlpath;
var serverurl = common.serverurl;
var extra = require('./extra');
var renderFilename = extra.renderFilename;
@ -378,5 +379,11 @@ function parseToHistory(list, notehistory, callback) {
}
module.exports = {
writeHistory: writeHistory
writeHistory: writeHistory,
parseHistory: parseHistory,
getStorageHistory: getStorageHistory,
getHistory: getHistory,
saveHistory: saveHistory,
removeHistory: removeHistory,
parseStorageToHistory: parseStorageToHistory
}