Avoid multiline variable declaration

This commit is contained in:
Bryan Housel
2018-11-27 11:22:13 -05:00
parent 4c2f14230b
commit 0b98811377
+2 -2
View File
@@ -10,8 +10,8 @@ import {
export function uiFieldTextarea(field) {
var dispatch = d3_dispatch('change'),
input = d3_select(null);
var dispatch = d3_dispatch('change');
var input = d3_select(null);
function textarea(selection) {