mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +03:00
c2cc086217
Now that all the imports are replaced, we need to set up the js-sdk somewhere. Might as well do it in the index of the react-sdk where callers will be relying on those skin functions.
34 lines
1 KiB
JavaScript
34 lines
1 KiB
JavaScript
/*
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import Skinner from './Skinner';
|
|
|
|
export function loadSkin(skinObject) {
|
|
Skinner.load(skinObject);
|
|
}
|
|
|
|
export function resetSkin() {
|
|
Skinner.reset();
|
|
}
|
|
|
|
export function getComponent(componentName) {
|
|
return Skinner.getComponent(componentName);
|
|
}
|
|
|
|
// Import the js-sdk so the proper `request` object can be set. This does some
|
|
// magic with the browser injection to make all subsequent imports work fine.
|
|
import "matrix-js-sdk";
|