[Limits] Show limits from scrolling list view

WTD-1223.
This commit is contained in:
Victor Woeltjen
2015-06-08 11:57:05 -07:00
parent f4adc6a889
commit 4ab36bd421
5 changed files with 15 additions and 12 deletions

View File

@ -55,9 +55,11 @@ define(
* @returns {string} the text to display
*/
getValue: function (domainObject, data, index) {
return telemetryFormatter.formatDomainValue(
data.getDomainValue(index, domainMetadata.key)
);
return {
text: telemetryFormatter.formatDomainValue(
data.getDomainValue(index, domainMetadata.key)
)
};
}
};
}