Move roomname generator to React
This commit is contained in:
parent
b646e8d213
commit
83dd56d34c
4
app.js
4
app.js
|
@ -24,7 +24,9 @@ const LogCollector = Logger.LogCollector;
|
|||
import JitsiMeetLogStorage from "./modules/util/JitsiMeetLogStorage";
|
||||
|
||||
import URLProcessor from "./modules/config/URLProcessor";
|
||||
import { generateRoomWithoutSeparator } from './modules/util/RoomnameGenerator';
|
||||
import {
|
||||
generateRoomWithoutSeparator
|
||||
} from './react/features/base/util/roomnameGenerator';
|
||||
|
||||
import UI from "./modules/UI/UI";
|
||||
import settings from "./modules/settings/Settings";
|
||||
|
|
|
@ -25,7 +25,7 @@ import SettingsMenu from "./side_pannels/settings/SettingsMenu";
|
|||
import Profile from "./side_pannels/profile/Profile";
|
||||
import Settings from "./../settings/Settings";
|
||||
import RingOverlay from "./ring_overlay/RingOverlay";
|
||||
import { randomInt } from "../util/RandomUtil";
|
||||
import { randomInt } from "../../react/features/base/util/randomUtil";
|
||||
import UIErrors from './UIErrors';
|
||||
import { debounce } from "../util/helpers";
|
||||
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
/* global $, interfaceConfig, APP */
|
||||
|
||||
import { generateRoomWithoutSeparator } from '../../util/RoomnameGenerator';
|
||||
import {
|
||||
generateRoomWithoutSeparator
|
||||
} from '../../../react/features/base/util/roomnameGenerator';
|
||||
import UIUtil from '../util/UIUtil';
|
||||
|
||||
var animateTimeout, updateTimeout;
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
export * from './loadScript';
|
||||
export * from './roomnameGenerator';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { randomElement } from './RandomUtil';
|
||||
import { randomElement } from './randomUtil';
|
||||
|
||||
/*
|
||||
const _NOUN_ = [
|
Loading…
Reference in New Issue