1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-28 15:22:05 +03:00

Move MatrixChat and login components to react SDK.

Removed Modulator as it is no longer necessary in this form. ConferenceHandler
is injected in src/vector/index.js
This commit is contained in:
Kegan Dougal
2015-11-30 18:11:04 +00:00
parent 02a71b20a9
commit 1e694da460
11 changed files with 1066 additions and 125 deletions

View File

@ -15,16 +15,11 @@ limitations under the License.
*/
var Skinner = require('./Skinner');
var Modulator = require('./Modulator');
module.exports.loadSkin = function(skinObject) {
Skinner.load(skinObject);
};
module.exports.loadModule = function(moduleObject) {
Modulator.loadModule(moduleObject);
};
module.exports.resetSkin = function() {
Skinner.reset();
};