diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2016-03-23 08:18:25 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2016-03-30 09:25:11 -0400 |
commit | 882eb4cbf261985624d4ce0f0a59ca8f38a4b054 (patch) | |
tree | ca33dde4a1afe5817bead172b75e842f093a8177 | |
parent | 89fe04af3d19b80147b93beca38986ca12952850 (diff) | |
download | jquery-ui-882eb4cbf261985624d4ce0f0a59ca8f38a4b054.tar.gz jquery-ui-882eb4cbf261985624d4ce0f0a59ca8f38a4b054.zip |
Checkboxradio: Check that there is an icon before toggeling class
Fixes #14939
Closes gh-1686
-rw-r--r-- | ui/widgets/checkboxradio.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/widgets/checkboxradio.js b/ui/widgets/checkboxradio.js index 107749201..300cae8ce 100644 --- a/ui/widgets/checkboxradio.js +++ b/ui/widgets/checkboxradio.js @@ -115,7 +115,9 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, { if ( checked ) { this._addClass( this.label, "ui-checkboxradio-checked", "ui-state-active" ); - this._addClass( this.icon, null, "ui-state-hover" ); + if ( this.icon ) { + this._addClass( this.icon, null, "ui-state-hover" ); + } } this._on( { |