1
0
Fork 0
forked from 0x2620/oxjs

adding symbols

This commit is contained in:
rlx 2011-09-01 04:46:14 +00:00
commit 6da40d325c
9 changed files with 54 additions and 16 deletions

View file

@ -422,7 +422,7 @@ Ox.TextList = function(options, self) {
} else if (format) {
value = Ox.isObject(format) ?
Ox['format' + Ox.toTitleCase(format.type)]
.apply(this, $.merge([value], format.args)) :
.apply(this, Ox.merge([value], format.args || [])) :
format(value, data);
} else if (Ox.isArray(value)) {
value = value.join(', ');