mirror of
https://github.com/szimek/sharedrop.git
synced 2026-06-13 21:03:07 +08:00
7 lines
193 B
JavaScript
7 lines
193 B
JavaScript
// Clear HTML5 filesystem on page load
|
|
FileDrop.deferReadiness();
|
|
FileDrop.File.removeAll().then(function () {
|
|
console.log("Cleared HTML5 filesystem");
|
|
FileDrop.advanceReadiness();
|
|
});
|