Fix some code style inconsistencies

This commit is contained in:
Oleg 2013-10-06 08:21:40 +04:00
parent 3bcd04f528
commit b561f5ab0a
8 changed files with 10 additions and 13 deletions

View File

@ -60,9 +60,6 @@ function vendorPropName( style, name ) {
return origName;
}
function setPositiveNumber( elem, value, subtract ) {
var matches = rnumsplit.exec( value );
return matches ?
@ -371,7 +368,7 @@ jQuery.each([ "height", "width" ], function( i, name ) {
// Support: Android 2.3
jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,
function ( elem, computed ) {
function( elem, computed ) {
if ( computed ) {
// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
// Work around by temporarily setting element display to inline-block

View File

@ -2,4 +2,4 @@ define(function() {
return function( elem ) {
return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
};
});
});

View File

@ -1,3 +1,3 @@
define(function() {
return (/^margin/);
});
});

View File

@ -2,4 +2,4 @@ define([
"../../var/pnum"
], function( pnum ) {
return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
});
});

View File

@ -12,7 +12,7 @@
* Date: @DATE
*/
(function ( window, factory ) {
(function( window, factory ) {
if ( typeof module === "object" && typeof module.exports === "object" ) {
// Expose a jQuery-making factory as module.exports in loaders that implement the Node
@ -31,7 +31,7 @@
}
// Pass this, window may not be defined yet
}(this, function ( window ) {
}(this, function( window ) {
// Can't do this because several apps including ASP.NET trace
// the stack via arguments.caller.callee and Firefox dies if

View File

@ -1,8 +1,8 @@
define([
"../var/support"
], function( support ){
], function( support ) {
(function () {
(function() {
var input,
fragment = document.createDocumentFragment(),
div = fragment.appendChild( document.createElement( "div" ) );

View File

@ -188,7 +188,7 @@ jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function(
// rather than make the css module depend on the offset module, we just check for it here
jQuery.each( [ "top", "left" ], function( i, prop ) {
jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
function ( elem, computed ) {
function( elem, computed ) {
if ( computed ) {
computed = curCSS( elem, prop );
// if curCSS returns percentage, fallback to offset

View File

@ -1,7 +1,7 @@
define([
"./core",
"sizzle"
], function ( jQuery, Sizzle ) {
], function( jQuery, Sizzle ) {
jQuery.find = Sizzle;
jQuery.expr = Sizzle.selectors;