(x)
| 357 | // shiny::parseQueryString() treats + as spaces, and DataTables does not |
| 358 | // encode + to %2B (or % to %25) when sending the request |
| 359 | var encode_plus = function(x) { |
| 360 | return server ? x.replace(/%/g, '%25').replace(/\+/g, '%2B') : x; |
| 361 | }; |
| 362 | |
| 363 | // search the i-th column |
| 364 | var searchColumn = function(i, value) { |
no outgoing calls
no test coverage detected