Migrate settings to use a sandboxed iframe

This commit is contained in:
yflory
2017-11-09 14:23:40 +01:00
parent c1ba08cfc6
commit 101482b8cc
24 changed files with 2066 additions and 672 deletions

View File

@@ -719,27 +719,15 @@ define([
};
Pages['/settings/'] = Pages['/settings/index.html'] = function () {
return [
h('div#toolbar'),
h('div#container'),
loadingScreen()
];
return loadingScreen();
};
Pages['/profile/'] = Pages['/profile/index.html'] = function () {
return [
h('div#cp-toolbar'),
h('div#container'),
loadingScreen()
];
return loadingScreen();
};
Pages['/todo/'] = Pages['/todo/index.html'] = function () {
return [
h('div#toolbar'),
h('div#container'),
loadingScreen()
];
return loadingScreen();
};
return Pages;