2016-11-23 21:46:46 +00:00
|
|
|
import './native';
|
|
|
|
|
2017-10-17 19:08:32 +00:00
|
|
|
// The library lib-jitsi-meet (externally) depends on the libraries jQuery
|
2016-11-23 21:46:46 +00:00
|
|
|
(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
|
2017-05-08 14:43:55 +00:00
|
|
|
// of) the project jitsi-meet.
|
2016-11-23 21:46:46 +00:00
|
|
|
//
|
2022-01-25 10:01:52 +00:00
|
|
|
|
|
|
|
import JitsiMeetJS from 'lib-jitsi-meet';
|
2016-11-23 21:46:46 +00:00
|
|
|
export { JitsiMeetJS as default };
|