mirror of
https://github.com/nasa/openmct.git
synced 2025-06-17 06:38:17 +00:00
cssclass is now cssClass
Make property name consistent with standard camelCase naming.
This commit is contained in:
@ -53,7 +53,7 @@ define([
|
||||
* A violation of limits defined for a telemetry property.
|
||||
* @typedef LimitViolation
|
||||
* @memberof {module:openmct.TelemetryAPI~}
|
||||
* @property {string} cssclass the class (or space-separated classes) to
|
||||
* @property {string} cssClass the class (or space-separated classes) to
|
||||
* apply to display elements for values which violate this limit
|
||||
* @property {string} name the human-readable name for the limit violation
|
||||
*/
|
||||
|
@ -54,7 +54,7 @@ define(function () {
|
||||
Type.prototype.toLegacyDefinition = function () {
|
||||
var def = {};
|
||||
def.name = this.definition.label;
|
||||
def.cssclass = this.definition.cssclass;
|
||||
def.cssClass = this.definition.cssClass;
|
||||
def.description = this.definition.description;
|
||||
def.properties = this.definition.form;
|
||||
|
||||
|
@ -30,7 +30,7 @@ define(['./Type'], function (Type) {
|
||||
* the model for new domain objects of this type
|
||||
* @property {boolean} [creatable] true if users should be allowed to
|
||||
* create this type (default: false)
|
||||
* @property {string} [cssclass] the CSS class to apply for icons
|
||||
* @property {string} [cssClass] the CSS class to apply for icons
|
||||
*/
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user