This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// jQuery.holdReady (true) --> don't fire ready until i say so | |
// jQuery.holdReady (false) --> ok go ahead (assuming nobody else delayed) | |
jQuery.holdReady = function( hold ) { | |
if ( hold ) { | |
jQuery.readyWait++; | |
} else { | |
jQuery.ready( true ); | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set path=c:\nodejs\bin;%path% | |
c:\cygwin\bin\bash -c "cd c:/vstudio/jquery; make" | |
icacls dist\jquery.js /grant Everyone:RX |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function createSimpsons() { | |
var theSimpsons = ['Bart', 'Homer', 'Marge', 'Maggy', 'Lisa'], | |
numberOfSeasons = 21, | |
avgEpisodesPerSeason = 22; | |
$("#title").append("The Simpson Family"); | |
$("#details").append( | |
"<p>Number of seasons: " + numberOfSeasons + "</p>", | |
"<p>Episodes per season: " + avgEpisodesPerSeason + "</p>", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var originalEvent = event, | |
propHook = jQuery.event.propHooks[ event.type ]; | |
event = jQuery.Event( originalEvent ); | |
// If hook returns false, it doesn't want anything else done | |
if ( propHook && propHook( event, originalEvent ) === false ) { | |
return event; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var originalEvent = event, | |
propHook = jQuery.event.propHooks[ event.type ], | |
copy = props; | |
event = jQuery.Event( originalEvent ); | |
// propHook can return an array of props to copy | |
if ( propHook ) { | |
copy.concat( propHook( event, originalEvent) || [] ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(new Windows.Devices.Geolocation.Geolocator()).getGeopositionAsync().then(function(pos){ | |
// If lat/lon not available, just use a default | |
pos = pos || { coordinate: { latitude: 39, longitude: 76, accuracy: 42 } }; | |
$("#latlon").text( | |
"lat=" + pos.coordinate.latitude + ", lon=" + pos.coordinate.longitude + | |
", accuracy=" + pos.coordinate.accuracy+ | |
", addr=" + (pos.civicAddress.city || pos.civicAddress.state || pos.civicAddress.postalCode) | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fetchCurrentPosition() | |
.then(updateLocationDisplay) | |
.pipe(fetchWeatherAtThisLocation) | |
.then(updateWeatherDisplay) | |
.pipe(determineWeatherType) | |
.then(updateRecommendations) | |
.then(updateAppTile); | |
function fetchCurrentPosition() | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test("clone() attributes are independent (#9777)", function () { | |
expect(1); | |
var attrName = "quack", | |
orig = jQuery( '<button>hi</button>' ).appendTo( "#qunit-fixture" ), | |
clone1 = orig.clone().attr( attrName, "clone1" ).appendTo( "#qunit-fixture" ), | |
clone2 = clone1.clone().attr( attrName, "clone2" ).appendTo( "#qunit-fixture" ); | |
equal( clone1.attr(attrName), "clone1", "First clone's attr is unmolested" ); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function debugAccess(obj, prop, debugGet){ | |
var origValue = obj[prop]; | |
Object.defineProperty(obj, prop, { | |
get: function () { | |
if ( debugGet ) | |
debugger; | |
return origValue; | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* jQuery JavaScript Library v@VERSION | |
* http://jquery.com/ | |
* | |
* Includes Sizzle.js | |
* http://sizzlejs.com/ | |
* | |
* Copyright 2012 jQuery Foundation and other contributors | |
* Released under the MIT license. | |
* http://jquery.org/license |
OlderNewer