mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix d3 tab character
This commit is contained in:
2
packages/d3/d3.v3.js
vendored
2
packages/d3/d3.v3.js
vendored
@@ -1789,7 +1789,7 @@ d3 = function() {
|
||||
return dsv;
|
||||
}
|
||||
d3.csv = d3_dsv(",", "text/csv");
|
||||
d3.tsv = d3_dsv(" ", "text/tab-separated-values");
|
||||
d3.tsv = d3_dsv("\t", "text/tab-separated-values");
|
||||
var d3_timer_id = 0, d3_timer_byId = {}, d3_timer_queue = null, d3_timer_interval, d3_timer_timeout;
|
||||
d3.timer = function(callback, delay, then) {
|
||||
if (arguments.length < 3) {
|
||||
|
||||
Reference in New Issue
Block a user