jiti-meet/react/features/base/lib-jitsi-meet/_.native.js

20 lines
527 B
JavaScript
Raw Normal View History

import './native';
// The library lib-jitsi-meet (externally) depends on the libraries jQuery
(global => {
// jQuery
if (typeof global.$ === 'undefined') {
const jQuery = require('jquery');
jQuery(global);
global.$ = jQuery;
}
})(global || window || this); // eslint-disable-line no-invalid-this
// Re-export JitsiMeetJS from the library lib-jitsi-meet to (the other features
// of) the project jitsi-meet.
//
import JitsiMeetJS from 'lib-jitsi-meet';
export { JitsiMeetJS as default };