eslint compliance on reducers & VOs

This commit is contained in:
Cássio Zen
2016-06-16 22:49:48 -03:00
parent 093bd264b6
commit b9cee02758
5 changed files with 8 additions and 8 deletions

View File

@ -9,6 +9,6 @@ export default function MediaProxy(value, file, uploaded = false) {
this.uploaded = uploaded;
this.uri = config.media_folder && !uploaded ? config.media_folder + '/' + value : value;
this.toString = function() {
return this.uploaded ? this.uri : window.URL.createObjectURL(this.file, {oneTimeOnly: true});
return this.uploaded ? this.uri : window.URL.createObjectURL(this.file, { oneTimeOnly: true });
};
}