refactor whiteboard storage

This commit is contained in:
raphael 2019-01-11 11:33:43 +01:00
parent 8bd4bef6f6
commit 23274299bf
1 changed files with 2 additions and 5 deletions

View File

@ -22,7 +22,7 @@ module.exports = {
}
}
}
} else if(tool==="line" || tool==="pen" || tool==="rect" || tool==="circle" || tool==="eraser" || tool==="addImgBG" || tool==="recSelect" || tool==="eraseRec") { //Save all this actions
} else if(["line", "pen", "rect", "circle", "eraser", "addImgBG", "recSelect", "eraseRec"].includes(tool)) { //Save all this actions
if(!savedBoards[wid]) {
savedBoards[wid] = [];
}
@ -31,9 +31,6 @@ module.exports = {
}
},
loadStoredData : function(wid) { //Load saved whiteboard
if(!savedBoards[wid]) {
return [];
}
return savedBoards[wid];
return savedBoards[wid] ? savedBoards[wid] : [];
}
}