Mercurial > lada > lada-client
view app/lib/Helpers.js @ 403:e3e4adb00f32 0.5
Removed multiselect from filter comboboxes.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Wed, 11 Sep 2013 10:55:38 +0200 |
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); } } })