forked from 0x2620/oxjs
Ox.Filter, round 2
This commit is contained in:
parent
44530bceb9
commit
358c1ecebb
2 changed files with 384 additions and 230 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue