remove unused control radio function argument
This commit is contained in:
parent
eda317814b
commit
455829ad96
|
@ -1,7 +1,5 @@
|
|||
|
||||
import * as form from '../../form';
|
||||
|
||||
|
||||
import { get } from '../../../utility/get';
|
||||
import { set } from '../../../utility/set';
|
||||
import { convertColor } from '../../../utility/convertColor';
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
|
@ -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');
|
||||
|
||||
|
|
Loading…
Reference in New Issue