diff options
author | Scott González <scott.gonzalez@gmail.com> | 2016-10-11 09:59:32 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2016-10-11 10:15:04 -0400 |
commit | 0627eb3645009d868ae20a27d0a283acd5797a1f (patch) | |
tree | 8bbc31f1c052b763effe89a4b04cec1fc3756156 /ui/widgets | |
parent | 87eab46a589031d781299937f95f22bf61b5ef27 (diff) | |
download | jquery-ui-0627eb3645009d868ae20a27d0a283acd5797a1f.tar.gz jquery-ui-0627eb3645009d868ae20a27d0a283acd5797a1f.zip |
Form: Rename from `.form()` to `._form()` since its not for public use
Fixes #15074
Closes gh-1760
Diffstat (limited to 'ui/widgets')
-rw-r--r-- | ui/widgets/checkboxradio.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/widgets/checkboxradio.js b/ui/widgets/checkboxradio.js index 19ae92811..228c9fab9 100644 --- a/ui/widgets/checkboxradio.js +++ b/ui/widgets/checkboxradio.js @@ -161,7 +161,7 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, { // Not inside a form, check all inputs that also are not inside a form group = $( nameSelector ).filter( function() { - return $( this ).form().length === 0; + return $( this )._form().length === 0; } ); } |