[Time Conductor] Expose getFormat correctly

...as an instance method of FormatProvider
This commit is contained in:
Victor Woeltjen 2015-10-27 09:45:17 -07:00
parent 86c61f7543
commit c6b7121cf0

View File

@ -42,7 +42,7 @@ define([
this.formatMap = formatMap;
}
FormatProvider.getFormat = function (key) {
FormatProvider.prototype.getFormat = function (key) {
return this.formatMap[key];
};