Skip to content

Commit a877471

Browse files
committed
rename
1 parent bc0e484 commit a877471

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

services/static-webserver/client/source/class/osparc/auth/LoginPageOsparc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ qx.Class.define("osparc.auth.LoginPageOsparc", {
2424
const layout = new qx.ui.layout.HBox();
2525
this._setLayout(layout);
2626

27-
const loginPage = new osparc.auth.LoginPage();
27+
const loginPage = new osparc.auth.LoginWithDecorators();
2828
loginPage.addListener("done", e => this.fireDataEvent("done", e.getData()));
2929
this._add(loginPage, {
3030
flex: 1

services/static-webserver/client/source/class/osparc/auth/LoginPageSplit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ qx.Class.define("osparc.auth.LoginPageSplit", {
6767
__rebuildLayout: function() {
6868
this._removeAll();
6969

70-
const loginPage = new osparc.auth.LoginPage();
70+
const loginPage = new osparc.auth.LoginWithDecorators();
7171
loginPage.addListener("done", e => this.fireDataEvent("done", e.getData()));
7272
const hideableItems = loginPage.getChildControl("login-view").getHideableItems();
7373
if (this.isCompactVersion()) {

services/static-webserver/client/source/class/osparc/auth/LoginPage.js renamed to services/static-webserver/client/source/class/osparc/auth/LoginWithDecorators.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
* Main Authentication Page. A multi-page view that contains:
2121
* - top-spacer
2222
* - product logo
23-
* - login stack
23+
* - login stack (multi-page)
2424
* - announcements (if any)
2525
* - the login forms
2626
* - disclaimer and extra widgets (if any)
2727
* - bottom-spacer
2828
* - footer
2929
*/
3030

31-
qx.Class.define("osparc.auth.LoginPage", {
31+
qx.Class.define("osparc.auth.LoginWithDecorators", {
3232
extend: qx.ui.core.Widget,
3333

3434
/*

services/static-webserver/client/source/class/osparc/auth/ui/LoginView.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ qx.Class.define("osparc.auth.ui.LoginView", {
170170
poweredByLayout.add(label);
171171
const s4lLogo = new qx.ui.basic.Image("osparc/Sim4Life_full_logo_white.svg");
172172
s4lLogo.set({
173-
width: osparc.auth.LoginPage.LOGO_WIDTH/2,
174-
height: osparc.auth.LoginPage.LOGO_HEIGHT/2,
173+
width: osparc.auth.LoginWithDecorators.LOGO_WIDTH/2,
174+
height: osparc.auth.LoginWithDecorators.LOGO_HEIGHT/2,
175175
scale: true,
176176
alignX: "center"
177177
});

0 commit comments

Comments
 (0)