Remove jshint because we are using standard style based on ESLint

This commit is contained in:
Tyler Long
2017-04-21 11:21:42 +08:00
parent 3ebae8f331
commit a4d06742c3
4 changed files with 58 additions and 204 deletions

View File

@@ -188,7 +188,7 @@ var setLink = function (id, linkStr) {
var elem = d3.select(element).select('#' + id)
if (elem !== null) {
elem.on('click', function () {
window.open(linkStr, 'newTab') // jshint ignore:line
window.open(linkStr, 'newTab')
})
}
})