File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,14 @@ const checkbox = (args) => {
16
16
17
17
const checked = ( args [ 1 ] || '' ) . length > 0 && args [ 1 ] . trim ( ) !== 'false' ;
18
18
const inline = ( args [ 2 ] || '' ) . length > 0 && args [ 2 ] . trim ( ) !== 'false' ;
19
- const enabled = ( args [ 3 ] || '' ) . length > 0 && args [ 3 ] . trim ( ) = == 'false' ;
19
+ const disabled = ( args [ 3 ] || '' ) . length > 0 && args [ 3 ] . trim ( ) ! == 'false' ;
20
20
21
21
return `${ ! inline ? '<div>' : '' }
22
- <input type="checkbox" ${ enabled ? '' : 'disabled ' } ${ checked ? 'checked="checked"' : '' } >${ text }
22
+ <input type="checkbox" ${ disabled ? 'disabled ' : '' } ${ checked ? 'checked="checked"' : '' } >${ text }
23
23
${ ! inline ? '</div>' : '' } ` ;
24
24
25
25
} ;
26
26
27
- // {% cb text, checked?, inline? %}
27
+ // {% cb text, checked?, inline?, disabled? %}
28
28
hexo . extend . tag . register ( 'checkbox' , checkbox , { ends : false } ) ;
29
29
hexo . extend . tag . register ( 'cb' , checkbox , { ends : false } ) ;
You can’t perform that action at this time.
0 commit comments