ModuleTheme

ModuleTheme ⇐ Trait

Kind: global class
Extends: Trait
Properties

NameTypeDescription
typeString

The module type

isThemeboolean

flag (always true)

ModuleTheme()

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]
  }
});