diff --git a/src/component/control/inputButton/index.js b/src/component/control/inputButton/index.js index 661c5f08..f5773089 100644 --- a/src/component/control/inputButton/index.js +++ b/src/component/control/inputButton/index.js @@ -1,7 +1,5 @@ - import * as form from '../../form'; - import { get } from '../../../utility/get'; import { set } from '../../../utility/set'; import { convertColor } from '../../../utility/convertColor'; diff --git a/src/component/control/radio/index.js b/src/component/control/radio/index.js index 8c3e9952..914cf827 100644 --- a/src/component/control/radio/index.js +++ b/src/component/control/radio/index.js @@ -129,10 +129,7 @@ export const Control_radio = function ({ }; - this.inputButton = ({ - //FIXME deprecated property - inputHide = false //eslint-disable-line - } = {}) => { + this.inputButton = () => { const wrap = form.wrap(); diff --git a/src/utility/applyCSSState.js b/src/utility/applyCSSState.js index b8f9a01d..199f97f3 100644 --- a/src/utility/applyCSSState.js +++ b/src/utility/applyCSSState.js @@ -1,7 +1,7 @@ import { state } from '../component/state'; import { get } from './get'; -export const applyCSSState = function (path) { +export const applyCSSState = (path) => { const html = document.querySelector('html');