Bug 951993 - Fix undefined mMode when called from file input in HTML form. r=baku

This commit is contained in:
Gary Houston 2013-12-23 09:03:25 +00:00
Родитель 5ad5a23799
Коммит 758bdd6040
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -167,7 +167,7 @@ nsFilePicker.prototype = {
get addToRecentDocs() { return false; },
/* readonly attribute short mode; */
get mode() { return mMode; },
get mode() { return this.mMode; },
/* members */
mFilesEnumerator: undefined,