123456789101112131415161718192021 |
- (function (Misago) {
- 'use strict';
- Misago.addService('forum-layout', {
- factory: function(_) {
- if (_.setup.fixture) {
- m.mount(document.getElementById(_.setup.fixture),
- _.component('forum-layout'));
- }
- },
- destroy: function(_) {
- if (_.setup.fixture) {
- m.mount(document.getElementById(_.setup.fixture), null);
- }
- }
- },
- {
- before: 'start-routing'
- });
- }(Misago.prototype));
|