Mercurial > lada > lada-client
view app/lib/Helpers.js @ 445:a122424f2f0f
Fixed typos in fields.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Tue, 03 Dec 2013 17:08:44 +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); } } })