First commit
This commit is contained in:
38
application/demo/pages/appearance/rows/tint.js
Normal file
38
application/demo/pages/appearance/rows/tint.js
Normal file
@@ -0,0 +1,38 @@
|
||||
|
||||
import panelRow from '/elements/panel/row.js';
|
||||
|
||||
import select from '/elements/selectRenderCollection.js';
|
||||
|
||||
import spinner from '/elements/preloaders/simpleSpinner.js';
|
||||
|
||||
import themeTintSelectors from "./tint.selector.list.js";
|
||||
|
||||
import customLabel from "./tint.label.js";
|
||||
|
||||
|
||||
|
||||
export default class tint extends panelRow{
|
||||
|
||||
flexDirection = "row";
|
||||
|
||||
label = new customLabel("Appearance");
|
||||
|
||||
themeTintSelectors = new themeTintSelectors();
|
||||
|
||||
spinner = new spinner();
|
||||
|
||||
create() {
|
||||
|
||||
this.themeTintSelectors.hide()
|
||||
|
||||
}
|
||||
|
||||
afterThemeLoad() {
|
||||
|
||||
this.spinner.hide()
|
||||
|
||||
this.themeTintSelectors.show();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user