1
0
Fork 0
forked from 0x2620/oxjs

Ox.Filter, round 2

This commit is contained in:
rlx 2011-01-24 04:08:19 +00:00
commit 358c1ecebb
2 changed files with 384 additions and 230 deletions

View file

@ -1226,6 +1226,10 @@ Format functions
================================================================================
*/
Ox.formatColor = function() {
};
Ox.formatCurrency = function(num, str, dec) {
return str + formatNumber(num, dec);
};
@ -1511,6 +1515,10 @@ Ox.formatValue = function(num, str) {
return val;
};
Ox.formatUnit = function(num, str) {
return num + ' ' + str;
};
/*
================================================================================
Geo functions