Standard fixes

This commit is contained in:
knsv
2019-07-22 05:23:03 -07:00
parent 0478e4217b
commit cf686c445c
3 changed files with 2 additions and 3 deletions

View File

@@ -1631,7 +1631,7 @@ describe('when parsing ', function () {
}) })
it('it should be able to parse a \'=\'', function () { it('it should be able to parse a \'=\'', function () {
charTest('=') charTest('=','=')
}) })
it('it should be able to parse a \'&\'', function () { it('it should be able to parse a \'&\'', function () {
charTest('&') charTest('&')

View File

@@ -504,7 +504,6 @@ const pushFun = function (id, callbackFunction) {
// const elem = d3.select(element).select(`[id="${id}-text"]`) // const elem = d3.select(element).select(`[id="${id}-text"]`)
const elem = document.querySelector(`[id="${id}-text"]`) const elem = document.querySelector(`[id="${id}-text"]`)
if (elem !== null) { if (elem !== null) {
elem.addEventListener('click', function () { elem.addEventListener('click', function () {
callbackFunction() callbackFunction()
}) })