one-shot build (#3266)

* One-shot development

* Move jsonp to module
* Tooltip -> module
* Remove d3.jsonp
* Fix tooltip lint
* Load all libs but d3 itself with require
* Add top-level brfs

* Unformat intro graph
This commit is contained in:
Tom MacWright
2016-08-10 15:25:19 -07:00
committed by GitHub
parent 77a037b225
commit 6341d4e4b5
50 changed files with 47037 additions and 84611 deletions

View File

@@ -1,4 +1,5 @@
import { t } from '../util/locale';
import { tooltip } from '../util/tooltip';
import _ from 'lodash';
import { displayName, entityOrMemberSelector } from '../util/index';
import { Icon } from '../svg/index';
@@ -137,7 +138,7 @@ export function Commit(context) {
});
warningLi.filter(function(d) { return d.tooltip; })
.call(bootstrap.tooltip()
.call(tooltip()
.title(function(d) { return d.tooltip; })
.placement('top')
);