* simple Template formatter
(tpl, param, encode)
| 16546 | */ |
| 16547 | |
| 16548 | function formatTplSimple(tpl, param, encode) { |
| 16549 | each(param, function (value, key) { |
| 16550 | tpl = tpl.replace('{' + key + '}', encode ? encodeHTML(value) : value); |
| 16551 | }); |
| 16552 | return tpl; |
| 16553 | } |
| 16554 | function getTooltipMarker(inOpt, extraCssText) { |
| 16555 | var opt = isString(inOpt) ? { |
| 16556 | color: inOpt, |
no test coverage detected
searching dependent graphs…