scratch

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 124  →  ?path2? @ 125
/bower_components/jquery/src/css/addGetHookIf.js
@@ -1,14 +1,10 @@
define( function() {
define(function() {
 
"use strict";
 
function addGetHookIf( conditionFn, hookFn ) {
 
// Define the hook, we'll check on the first run if it's really needed.
return {
get: function() {
if ( conditionFn() ) {
 
// Hook not needed (or it's not possible to use it due
// to missing dependency), remove it.
delete this.get;
@@ -16,7 +12,7 @@
}
 
// Hook needed; redefine it so that the support test is not executed again.
return ( this.get = hookFn ).apply( this, arguments );
return (this.get = hookFn).apply( this, arguments );
}
};
}
@@ -23,4 +19,4 @@
 
return addGetHookIf;
 
} );
});
/bower_components/jquery/src/css/curCSS.js
@@ -1,14 +1,11 @@
define( [
define([
"../core",
"./var/rnumnonpx",
"./var/rmargin",
"./var/getStyles",
"./support",
"../selector" // Get jQuery.contains
], function( jQuery, rnumnonpx, rmargin, getStyles, support ) {
"../selector" // contains
], function( jQuery, rnumnonpx, rmargin, getStyles ) {
 
"use strict";
 
function curCSS( elem, name, computed ) {
var width, minWidth, maxWidth, ret,
style = elem.style;
@@ -15,21 +12,23 @@
 
computed = computed || getStyles( elem );
 
// Support: IE <=9 only
// Support: IE9
// getPropertyValue is only needed for .css('filter') (#12537)
if ( computed ) {
ret = computed.getPropertyValue( name ) || computed[ name ];
}
 
if ( computed ) {
 
if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
ret = jQuery.style( elem, name );
}
 
// Support: iOS < 6
// A tribute to the "awesome hack by Dean Edwards"
// Android Browser returns percentage for some values,
// but width seems to be reliably pixels.
// This is against the CSSOM draft spec:
// https://drafts.csswg.org/cssom/#resolved-values
if ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) {
// iOS < 6 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels
// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {
 
// Remember the original values
width = style.width;
@@ -48,8 +47,7 @@
}
 
return ret !== undefined ?
 
// Support: IE <=9 - 11 only
// Support: IE
// IE returns zIndex value as an integer.
ret + "" :
ret;
@@ -56,4 +54,4 @@
}
 
return curCSS;
} );
});
/bower_components/jquery/src/css/defaultDisplay.js
@@ -0,0 +1,70 @@
define([
"../core",
"../manipulation" // appendTo
], function( jQuery ) {
 
var iframe,
elemdisplay = {};
 
/**
* Retrieve the actual display of a element
* @param {String} name nodeName of the element
* @param {Object} doc Document object
*/
// Called only from within defaultDisplay
function actualDisplay( name, doc ) {
var style,
elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
 
// getDefaultComputedStyle might be reliably used only on attached element
display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?
 
// Use of this method is a temporary fix (more like optimization) until something better comes along,
// since it was removed from specification and supported only in FF
style.display : jQuery.css( elem[ 0 ], "display" );
 
// We don't have any data stored on the element,
// so use "detach" method as fast way to get rid of the element
elem.detach();
 
return display;
}
 
/**
* Try to determine the default display value of an element
* @param {String} nodeName
*/
function defaultDisplay( nodeName ) {
var doc = document,
display = elemdisplay[ nodeName ];
 
if ( !display ) {
display = actualDisplay( nodeName, doc );
 
// If the simple way fails, read from inside an iframe
if ( display === "none" || !display ) {
 
// Use the already-created iframe if possible
iframe = (iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" )).appendTo( doc.documentElement );
 
// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse
doc = iframe[ 0 ].contentDocument;
 
// Support: IE
doc.write();
doc.close();
 
display = actualDisplay( nodeName, doc );
iframe.detach();
}
 
// Store the correct default display
elemdisplay[ nodeName ] = display;
}
 
return display;
}
 
return defaultDisplay;
 
});
/bower_components/jquery/src/css/hiddenVisibleSelectors.js
@@ -1,15 +1,15 @@
define( [
define([
"../core",
"../selector"
], function( jQuery ) {
 
"use strict";
 
jQuery.expr.pseudos.hidden = function( elem ) {
return !jQuery.expr.pseudos.visible( elem );
jQuery.expr.filters.hidden = function( elem ) {
// Support: Opera <= 12.12
// Opera reports offsetWidths and offsetHeights less than zero on some elements
return elem.offsetWidth <= 0 && elem.offsetHeight <= 0;
};
jQuery.expr.pseudos.visible = function( elem ) {
return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );
jQuery.expr.filters.visible = function( elem ) {
return !jQuery.expr.filters.hidden( elem );
};
 
} );
});
/bower_components/jquery/src/css/support.js
@@ -1,89 +1,96 @@
define( [
define([
"../core",
"../var/document",
"../var/documentElement",
"../var/support"
], function( jQuery, document, documentElement, support ) {
], function( jQuery, support ) {
 
"use strict";
(function() {
var pixelPositionVal, boxSizingReliableVal,
docElem = document.documentElement,
container = document.createElement( "div" ),
div = document.createElement( "div" );
 
( function() {
if ( !div.style ) {
return;
}
 
// Support: IE9-11+
// Style of cloned element affects source element cloned (#8908)
div.style.backgroundClip = "content-box";
div.cloneNode( true ).style.backgroundClip = "";
support.clearCloneStyle = div.style.backgroundClip === "content-box";
 
container.style.cssText = "border:0;width:0;height:0;top:0;left:-9999px;margin-top:1px;" +
"position:absolute";
container.appendChild( div );
 
// Executing both pixelPosition & boxSizingReliable tests require only one layout
// so they're executed at the same time to save the second computation.
function computeStyleTests() {
 
// This is a singleton, we need to execute it only once
if ( !div ) {
return;
}
 
function computePixelPositionAndBoxSizingReliable() {
div.style.cssText =
"box-sizing:border-box;" +
"position:relative;display:block;" +
"margin:auto;border:1px;padding:1px;" +
"top:1%;width:50%";
// Support: Firefox<29, Android 2.3
// Vendor-prefix box-sizing
"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;" +
"box-sizing:border-box;display:block;margin-top:1%;top:1%;" +
"border:1px;padding:1px;width:4px;position:absolute";
div.innerHTML = "";
documentElement.appendChild( container );
docElem.appendChild( container );
 
var divStyle = window.getComputedStyle( div );
var divStyle = window.getComputedStyle( div, null );
pixelPositionVal = divStyle.top !== "1%";
 
// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44
reliableMarginLeftVal = divStyle.marginLeft === "2px";
boxSizingReliableVal = divStyle.width === "4px";
 
// Support: Android 4.0 - 4.3 only
// Some styles come back with percentage values, even though they shouldn't
div.style.marginRight = "50%";
pixelMarginRightVal = divStyle.marginRight === "4px";
docElem.removeChild( container );
}
 
documentElement.removeChild( container );
// Support: node.js jsdom
// Don't assume that getComputedStyle is a property of the global object
if ( window.getComputedStyle ) {
jQuery.extend( support, {
pixelPosition: function() {
 
// Nullify the div so it wouldn't be stored in the memory and
// it will also be a sign that checks already performed
div = null;
}
// This test is executed only once but we still do memoizing
// since we can use the boxSizingReliable pre-computing.
// No need to check if the test was already performed, though.
computePixelPositionAndBoxSizingReliable();
return pixelPositionVal;
},
boxSizingReliable: function() {
if ( boxSizingReliableVal == null ) {
computePixelPositionAndBoxSizingReliable();
}
return boxSizingReliableVal;
},
reliableMarginRight: function() {
 
var pixelPositionVal, boxSizingReliableVal, pixelMarginRightVal, reliableMarginLeftVal,
container = document.createElement( "div" ),
div = document.createElement( "div" );
// Support: Android 2.3
// Check if div with explicit width and no margin-right incorrectly
// gets computed margin-right based on width of container. (#3333)
// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
// This support function is only executed once so no memoizing is needed.
var ret,
marginDiv = div.appendChild( document.createElement( "div" ) );
 
// Finish early in limited (non-browser) environments
if ( !div.style ) {
return;
}
// Reset CSS: box-sizing; display; margin; border; padding
marginDiv.style.cssText = div.style.cssText =
// Support: Firefox<29, Android 2.3
// Vendor-prefix box-sizing
"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" +
"box-sizing:content-box;display:block;margin:0;border:0;padding:0";
marginDiv.style.marginRight = marginDiv.style.width = "0";
div.style.width = "1px";
docElem.appendChild( container );
 
// Support: IE <=9 - 11 only
// Style of cloned element affects source element cloned (#8908)
div.style.backgroundClip = "content-box";
div.cloneNode( true ).style.backgroundClip = "";
support.clearCloneStyle = div.style.backgroundClip === "content-box";
ret = !parseFloat( window.getComputedStyle( marginDiv, null ).marginRight );
 
container.style.cssText = "border:0;width:8px;height:0;top:0;left:-9999px;" +
"padding:0;margin-top:1px;position:absolute";
container.appendChild( div );
docElem.removeChild( container );
div.removeChild( marginDiv );
 
jQuery.extend( support, {
pixelPosition: function() {
computeStyleTests();
return pixelPositionVal;
},
boxSizingReliable: function() {
computeStyleTests();
return boxSizingReliableVal;
},
pixelMarginRight: function() {
computeStyleTests();
return pixelMarginRightVal;
},
reliableMarginLeft: function() {
computeStyleTests();
return reliableMarginLeftVal;
}
} );
} )();
return ret;
}
});
}
})();
 
return support;
 
} );
});
/bower_components/jquery/src/css/swap.js
@@ -0,0 +1,28 @@
define([
"../core"
], function( jQuery ) {
 
// A method for quickly swapping in/out CSS properties to get correct calculations.
jQuery.swap = function( elem, options, callback, args ) {
var ret, name,
old = {};
 
// Remember the old values, and insert the new ones
for ( name in options ) {
old[ name ] = elem.style[ name ];
elem.style[ name ] = options[ name ];
}
 
ret = callback.apply( elem, args || [] );
 
// Revert the old values
for ( name in options ) {
elem.style[ name ] = old[ name ];
}
 
return ret;
};
 
return jQuery.swap;
 
});
/bower_components/jquery/src/css/var/cssExpand.js
@@ -1,5 +1,3 @@
define( function() {
"use strict";
 
define(function() {
return [ "Top", "Right", "Bottom", "Left" ];
} );
});
/bower_components/jquery/src/css/var/getStyles.js
@@ -1,17 +1,12 @@
define( function() {
"use strict";
 
define(function() {
return function( elem ) {
 
// Support: IE <=11 only, Firefox <=30 (#15098, #14150)
// Support: IE<=11+, Firefox<=30+ (#15098, #14150)
// IE throws on elements created in popups
// FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
var view = elem.ownerDocument.defaultView;
 
if ( !view || !view.opener ) {
view = window;
if ( elem.ownerDocument.defaultView.opener ) {
return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
}
 
return view.getComputedStyle( elem );
return window.getComputedStyle( elem, null );
};
} );
});
/bower_components/jquery/src/css/var/isHidden.js
@@ -0,0 +1,13 @@
define([
"../../core",
"../../selector"
// css is assumed
], function( jQuery ) {
 
return function( elem, el ) {
// isHidden might be called from jQuery#filter function;
// in that case, element will be second argument
elem = el || elem;
return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
};
});
/bower_components/jquery/src/css/var/rmargin.js
@@ -1,5 +1,3 @@
define( function() {
"use strict";
 
return ( /^margin/ );
} );
define(function() {
return (/^margin/);
});
/bower_components/jquery/src/css/var/rnumnonpx.js
@@ -1,7 +1,5 @@
define( [
define([
"../../var/pnum"
], function( pnum ) {
"use strict";
 
return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
} );
});