diff --git a/src/editor/index.js b/src/editor/index.js index e11db0a8d..e9fad834e 100644 --- a/src/editor/index.js +++ b/src/editor/index.js @@ -379,10 +379,11 @@ module.exports = config => { /** * Load data from the current storage + * @param {Function} clb Callback function * @return {Object} Stored data */ - load() { - return em.load(); + load(clb) { + return em.load(clb); }, /**