This file contains hidden or 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 hidden or 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 hidden or 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 ); | |
| } | |
| }; |
NewerOlder