mirror of https://github.com/vector-im/riot-web
rename helper method
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
cebb2b773f
commit
e8db379fed
|
@ -34,7 +34,7 @@ import WidgetUtils from "./utils/WidgetUtils";
|
||||||
import {textToHtmlRainbow} from "./utils/colour";
|
import {textToHtmlRainbow} from "./utils/colour";
|
||||||
import Promise from "bluebird";
|
import Promise from "bluebird";
|
||||||
|
|
||||||
const requestSingleFileUpload = async () => {
|
const singleMxcUpload = async () => {
|
||||||
return new Promise((resolve) => {
|
return new Promise((resolve) => {
|
||||||
const fileSelector = document.createElement('input');
|
const fileSelector = document.createElement('input');
|
||||||
fileSelector.setAttribute('type', 'file');
|
fileSelector.setAttribute('type', 'file');
|
||||||
|
@ -242,7 +242,7 @@ export const CommandMap = {
|
||||||
|
|
||||||
let promise = Promise.resolve(args);
|
let promise = Promise.resolve(args);
|
||||||
if (!args) {
|
if (!args) {
|
||||||
promise = requestSingleFileUpload();
|
promise = singleMxcUpload();
|
||||||
}
|
}
|
||||||
|
|
||||||
return success(promise.then((url) => {
|
return success(promise.then((url) => {
|
||||||
|
@ -263,7 +263,7 @@ export const CommandMap = {
|
||||||
runFn: function(roomId, args) {
|
runFn: function(roomId, args) {
|
||||||
let promise = Promise.resolve(args);
|
let promise = Promise.resolve(args);
|
||||||
if (!args) {
|
if (!args) {
|
||||||
promise = requestSingleFileUpload();
|
promise = singleMxcUpload();
|
||||||
}
|
}
|
||||||
|
|
||||||
return success(promise.then((url) => {
|
return success(promise.then((url) => {
|
||||||
|
|
Loading…
Reference in New Issue