1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-02 20:15:26 +02:00
This commit is contained in:
Harvey Kandola 2017-11-29 11:20:04 +00:00
parent fbb6f3485d
commit 7188324714
3 changed files with 34 additions and 35 deletions

View file

@ -10,12 +10,10 @@
// https://documize.com
import { inject as service } from '@ember/service';
import Controller from '@ember/controller';
import NotifierMixin from "../../mixins/notifier";
import Encoding from "../../utils/encoding";
export default Controller.extend(NotifierMixin, {
export default Controller.extend({
ajax: service(),
actions: {

View file

@ -36,6 +36,11 @@ export default Route.extend({
},
activate() {
$('body').addClass('background-color-theme-light');
document.title = "Documize Setup";
},
deactivate() {
$('body').removeClass('background-color-theme-light');
}
});