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