sharedrop/app/scripts/app.js
2014-03-06 12:22:01 +01:00

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();
});