client/file-dropper: fix selecting multiple files

This commit is contained in:
rr- 2016-08-20 22:39:57 +02:00
parent 1f54a127d0
commit 8feac2950b
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class FileDropperControl {
this._dropperNode = source.querySelector('.file-dropper');
this._fileInputNode = source.querySelector('input');
this._fileInputNode.style.display = 'none';
this._fileInputNode.multiple = this._options._allowMultiple || false;
this._fileInputNode.multiple = this._options.allowMultiple || false;
this._counter = 0;
this._dropperNode.addEventListener(