Form: Rename from .form() to ._form() since its not for public use

Fixes #15074
Closes gh-1760
This commit is contained in:
Scott González 2016-10-11 09:59:32 -04:00
parent 87eab46a58
commit 0627eb3645
4 changed files with 4 additions and 4 deletions

View File

@ -180,7 +180,7 @@ QUnit.test( "Labels", function( assert ) {
QUnit.test( name + this.id.replace( /_/g, " " ), function( assert ) { QUnit.test( name + this.id.replace( /_/g, " " ), function( assert ) {
var ready = assert.async(); var ready = assert.async();
assert.expect( 1 ); assert.expect( 1 );
var form = input.form(); var form = input._form();
// If input has a form the value should reset to "" if not it should be "changed" // If input has a form the value should reset to "" if not it should be "changed"
var value = form.length ? "" : "changed"; var value = form.length ? "" : "changed";

View File

@ -42,7 +42,7 @@ return $.ui.formResetMixin = {
}, },
_bindFormResetHandler: function() { _bindFormResetHandler: function() {
this.form = this.element.form(); this.form = this.element._form();
if ( !this.form.length ) { if ( !this.form.length ) {
return; return;
} }

View File

@ -13,7 +13,7 @@
// Support: IE8 Only // Support: IE8 Only
// IE8 does not support the form attribute and when it is supplied. It overwrites the form prop // IE8 does not support the form attribute and when it is supplied. It overwrites the form prop
// with a string, so we need to find the proper form. // with a string, so we need to find the proper form.
return $.fn.form = function() { return $.fn._form = function() {
return typeof this[ 0 ].form === "string" ? this.closest( "form" ) : $( this[ 0 ].form ); return typeof this[ 0 ].form === "string" ? this.closest( "form" ) : $( this[ 0 ].form );
}; };

View File

@ -161,7 +161,7 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
// Not inside a form, check all inputs that also are not inside a form // Not inside a form, check all inputs that also are not inside a form
group = $( nameSelector ).filter( function() { group = $( nameSelector ).filter( function() {
return $( this ).form().length === 0; return $( this )._form().length === 0;
} ); } );
} }