fix(GUI): drag and drop not working anymore (#766)

The "dropzone" directive, which we use to implement drag and drop
support, was not being loaded in the application at all for some reason.
It was probably accidentally deleted during major refactorings.

Change-Type: patch
Changelog-Entry: Fix drag and drop not working anymore.
Signed-off-by: Juan Cruz Viotti <jviotti@openmailbox.org>
This commit is contained in:
Juan Cruz Viotti 2016-10-24 14:23:33 -04:00 committed by GitHub
parent 9086041a80
commit 1609b8df5b
2 changed files with 2 additions and 0 deletions

View File

@ -57,6 +57,7 @@ const app = angular.module('Etcher', [
// OS
require('./os/window-progress/window-progress'),
require('./os/open-external/open-external'),
require('./os/dropzone/dropzone'),
// Utils
require('./utils/manifest-bind/manifest-bind')

View File

@ -40,6 +40,7 @@ const MainPage = angular.module(MODULE_NAME, [
require('../../os/notification/notification'),
require('../../os/dialog/dialog'),
require('../../os/open-external/open-external'),
require('../../os/dropzone/dropzone'),
require('../../modules/drive-scanner'),
require('../../modules/image-writer'),