aboutsummaryrefslogtreecommitdiff
path: root/web/app/AttributeFormatter.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2015-10-03 21:21:26 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2015-10-03 21:21:26 +1300
commit04e63f9b42991008843f3f9d1788fa6933bd57b3 (patch)
tree7e57e37dbe0e08da7cc10311b0d5f5556d151e5c /web/app/AttributeFormatter.js
parent086faa072ddd3e16c28c2ceaceaa90f32a05f7f9 (diff)
downloadtrackermap-server-04e63f9b42991008843f3f9d1788fa6933bd57b3.tar.gz
trackermap-server-04e63f9b42991008843f3f9d1788fa6933bd57b3.tar.bz2
trackermap-server-04e63f9b42991008843f3f9d1788fa6933bd57b3.zip
Change global styles class
Diffstat (limited to 'web/app/AttributeFormatter.js')
-rw-r--r--web/app/AttributeFormatter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/AttributeFormatter.js b/web/app/AttributeFormatter.js
index fe50e0d99..3f8f346c0 100644
--- a/web/app/AttributeFormatter.js
+++ b/web/app/AttributeFormatter.js
@@ -42,7 +42,7 @@
} else if (typeof value === 'boolean') {
return value ? Ext.Msg.buttonText.yes : Ext.Msg.buttonText.no;
} else if (value instanceof Date) {
- return Ext.Date.format(value, styles.dateTimeFormat);
+ return Ext.Date.format(value, Traccar.Style.dateTimeFormat);
}
return value;
},