diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2016-09-30 16:43:43 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2016-10-04 11:33:17 -0400 |
commit | b9d687deb58cce5f4c6e27dace9cb172e291698c (patch) | |
tree | d4c498e1247380b396bd742f1146ee6e121192a5 /ui | |
parent | 1b0e947f46bc1261b15816f2dcbd239d83a86335 (diff) | |
download | jquery-ui-b9d687deb58cce5f4c6e27dace9cb172e291698c.tar.gz jquery-ui-b9d687deb58cce5f4c6e27dace9cb172e291698c.zip |
Checkboxradio: Don't add ui-state-hover to icons
Fixes #15055
Closes gh-1756
Diffstat (limited to 'ui')
-rw-r--r-- | ui/widgets/checkboxradio.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/widgets/checkboxradio.js b/ui/widgets/checkboxradio.js index 45500aaf5..19ae92811 100644 --- a/ui/widgets/checkboxradio.js +++ b/ui/widgets/checkboxradio.js @@ -115,9 +115,6 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, { if ( checked ) { this._addClass( this.label, "ui-checkboxradio-checked", "ui-state-active" ); - if ( this.icon ) { - this._addClass( this.icon, null, "ui-state-hover" ); - } } this._on( { |