aboutsummaryrefslogtreecommitdiffstats
path: root/src/attributes/prop.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/attributes/prop.js')
-rw-r--r--src/attributes/prop.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/attributes/prop.js b/src/attributes/prop.js
index 4c7b51e8c..06528b0a5 100644
--- a/src/attributes/prop.js
+++ b/src/attributes/prop.js
@@ -1,4 +1,4 @@
-define([
+define( [
"../core",
"../core/access",
"./support",
@@ -7,19 +7,19 @@ define([
var rfocusable = /^(?:input|select|textarea|button)$/i;
-jQuery.fn.extend({
+jQuery.fn.extend( {
prop: function( name, value ) {
return access( this, jQuery.prop, name, value, arguments.length > 1 );
},
removeProp: function( name ) {
- return this.each(function() {
+ return this.each( function() {
delete this[ jQuery.propFix[ name ] || name ];
- });
+ } );
}
-});
+} );
-jQuery.extend({
+jQuery.extend( {
prop: function( elem, name, value ) {
var ret, hooks,
nType = elem.nodeType;
@@ -67,7 +67,7 @@ jQuery.extend({
"for": "htmlFor",
"class": "className"
}
-});
+} );
if ( !support.optSelected ) {
jQuery.propHooks.selected = {
@@ -81,7 +81,7 @@ if ( !support.optSelected ) {
};
}
-jQuery.each([
+jQuery.each( [
"tabIndex",
"readOnly",
"maxLength",
@@ -94,6 +94,6 @@ jQuery.each([
"contentEditable"
], function() {
jQuery.propFix[ this.toLowerCase() ] = this;
-});
+} );
-});
+} );