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

Working skin stuff, minus css

This commit is contained in:
David Baker
2015-09-15 13:34:36 +01:00
parent f3b9f8c799
commit 2d0c8ac9ff
9 changed files with 138 additions and 77 deletions

View File

@ -14,10 +14,17 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
'use strict';
var Skinner = require('./Skinner');
module.exports.loadSkin = function(skinObject) {
Skinner.load(skinObject);
};
module.exports.resetSkin = function() {
Skinner.reset();
};
module.exports.getComponent = function(componentName) {
return Skinner.getComponent(componentName);
};
module.exports.atoms = {};
module.exports.molecules = {};
module.exports.organisms = {};
module.exports.templates = {};
module.exports.pages = {};