File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ function getCurrentState() {
9797 const enabled = qs$ ( '#enableMyFilters input' ) . checked ;
9898 return {
9999 enabled,
100- trusted : enabled && qs$ ( '#trustMyFilters input' ) . checked ,
100+ trusted : qs$ ( '#trustMyFilters input' ) . checked ,
101101 filters : getEditorText ( ) ,
102102 } ;
103103}
@@ -128,7 +128,6 @@ function userFiltersChanged(details = {}) {
128128 qs$ ( '#userFiltersApply' ) . disabled = ! changed ;
129129 qs$ ( '#userFiltersRevert' ) . disabled = ! changed ;
130130 const enabled = qs$ ( '#enableMyFilters input' ) . checked ;
131- dom . attr ( '#trustMyFilters .input.checkbox' , 'disabled' , enabled ? null : '' ) ;
132131 const trustedbefore = cmEditor . getOption ( 'trustedSource' ) ;
133132 const trustedAfter = enabled && qs$ ( '#trustMyFilters input' ) . checked ;
134133 if ( trustedAfter === trustedbefore ) { return ; }
You can’t perform that action at this time.
0 commit comments