Title here
Summary here
Trait
Kind: global class
Extends: Trait
Properties
Name | Type | Description |
---|---|---|
type | String | The module type |
isTheme | boolean | flag (always true) |
The interface for modules that holds theme properties. On application side, just inherits from ModuleTheme and export it from your module.
Important: you can not override application theme properties!
$ModuleTheme.declare("VodTheme", {
properties: {
vodMenuHeight : 200
}
});
$VodModule.declare({
properties: {
exports: [$ModuleTheme]
}
});