Mercurial > lada > lada-client
view app/lib/Helpers.js @ 455:7e73478780fe
Issue55: Show "Ja"/"Nein" for Fertig-Flag in Overview.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Mon, 16 Dec 2013 14:53:41 +0100 |
parents | 60a2812568cb |
children | debfcc7713e3 |
line wrap: on
line source
/** * Helper class * This class provides some globally used functions. */ Ext.define('Lada.lib.Helpers', { statics: { /** * Function to translate a timestamp into a date */ ts2date: function(v, record){ // Converts a timestamp into a date object. if (v === null || v === undefined) { return v; } return new Date(v); } } })