Files
shiny/R
Joe Cheng 36256856b5 Fix issue #359: Factors in HTML attributes are being converted to their numeric, not character, equivalent
This bug was introduced in 3fc1410. Essentially it boils down to the difference between stringifying a factor, and stringifying a list containing a factor:

> as.character(factor('a'))
[1] "a"
> as.character(list(factor('a')))
[1] "1"
The call to split that was introduced in this commit ends up generating lists of factors, not vectors of them.

The best fix I could find was to convert all the attribute values to character before doing the split.
2014-01-10 01:48:02 -08:00
..
2013-06-18 17:07:42 -07:00
2013-12-27 21:41:34 -06:00
2014-01-09 10:44:50 -08:00
2012-11-21 23:02:40 -08:00