| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | 
							- /* application specific logic */
 - 
 - // FIXME: remove once atlaskit work with React 16
 - // It seems that @atlaskit/icon is importing PropTypes from React, but it
 - // happens through some glyph coffee script template. It could be that more
 - // things are broken there (not only the icon).
 - import './react/features/base/react/prop-types-polyfill.js';
 - 
 - import 'jquery';
 - import 'jquery-contextmenu';
 - import 'jQuery-Impromptu';
 - import 'autosize';
 - 
 - import conference from './conference';
 - import API from './modules/API';
 - import keyboardshortcut from './modules/keyboardshortcut/keyboardshortcut';
 - import remoteControl from './modules/remotecontrol/RemoteControl';
 - import settings from './modules/settings/Settings';
 - import translation from './modules/translation/translation';
 - import UI from './modules/UI/UI';
 - 
 - window.APP = {
 -     API,
 -     conference,
 - 
 -     // Used by do_external_connect.js if we receive the attach data after
 -     // connect was already executed. status property can be 'initialized',
 -     // 'ready', or 'connecting'. We are interested in 'ready' status only which
 -     // means that connect was executed but we have to wait for the attach data.
 -     // In status 'ready' handler property will be set to a function that will
 -     // finish the connect process when the attach data or error is received.
 -     connect: {
 -         handler: null,
 -         status: 'initialized'
 -     },
 - 
 -     // Used for automated performance tests.
 -     connectionTimes: {
 -         'index.loaded': window.indexLoadedTime
 -     },
 - 
 -     keyboardshortcut,
 -     remoteControl,
 -     settings,
 -     translation,
 -     UI
 - };
 - 
 - // TODO The execution of the mobile app starts from react/index.native.js.
 - // Similarly, the execution of the Web app should start from react/index.web.js
 - // for the sake of consistency and ease of understanding. Temporarily though
 - // because we are at the beginning of introducing React into the Web app, allow
 - // the execution of the Web app to start from app.js in order to reduce the
 - // complexity of the beginning step.
 - import './react';
 
 
  |