|
@@ -91,7 +91,6 @@ function getCloudFileList() {
|
|
|
.then(response => response.text())
|
|
|
.then(result => {
|
|
|
let data = JSON.parse(result);
|
|
|
- console.log("list", data)
|
|
|
if (data.status == 200) {
|
|
|
loginModalStatus();
|
|
|
updateCloudFileList(data.data.blocks)
|
|
@@ -252,7 +251,6 @@ function deleteCloudFile(id) {
|
|
|
.then(response => response.text())
|
|
|
.then(result => {
|
|
|
let data = JSON.parse(result);
|
|
|
- console.log("delete", data)
|
|
|
if (data.status == 200) {
|
|
|
Materialize.toast(CCB.str_group.success_deleteFile, 4000);
|
|
|
if (CCB.selectCloudFile == filename) {
|