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 * as form from '../../form';
|
||||||
|
|
||||||
|
|
||||||
import { get } from '../../../utility/get';
|
import { get } from '../../../utility/get';
|
||||||
import { set } from '../../../utility/set';
|
import { set } from '../../../utility/set';
|
||||||
import { convertColor } from '../../../utility/convertColor';
|
import { convertColor } from '../../../utility/convertColor';
|
||||||
|
|
|
@ -129,10 +129,7 @@ export const Control_radio = function ({
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
this.inputButton = ({
|
this.inputButton = () => {
|
||||||
//FIXME deprecated property
|
|
||||||
inputHide = false //eslint-disable-line
|
|
||||||
} = {}) => {
|
|
||||||
|
|
||||||
const wrap = form.wrap();
|
const wrap = form.wrap();
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { state } from '../component/state';
|
import { state } from '../component/state';
|
||||||
import { get } from './get';
|
import { get } from './get';
|
||||||
|
|
||||||
export const applyCSSState = function (path) {
|
export const applyCSSState = (path) => {
|
||||||
|
|
||||||
const html = document.querySelector('html');
|
const html = document.querySelector('html');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue