omgrequire
click here to add a description
click here to add a homepage
Make sure that the require callback is fired even if the file has already been loaded.
Make sure that async transport is still used even though we don't need the callback results.
Make sure that the require callback is only run after all the scripts have finished loading and executing.
Merge branch 'omgrequire' of github.com:jquery/jquery into omgrequire
Merge branch 'master' of git@github.com:jquery/jquery
Fixed typo from commit 542099a278e79dce38e814e7e7b448a1b73df82f.
Make sure that we don't attempt to rewrite js urls.
Added in namespace support for require URLs.
Added in support for a variable number of files to be required.
Make sure that dynamically-created elements don't have a parent. Fixes #5638.
combined jQuery.bind() and jQuery.one() to make them more DRY
Removed .attr(removeClass) and .attr(each) tests as they don't really make sense.
Missed the case of bind in the new attr multi-setter.
Moved some methods around inbetween core.js and traversing.js. Core methods shouldn't rely upon other modules (e.g. the selector engine) wherever possible.
Made some minor formatting changes to the access function.
Made the licensing verbiage a little more explicit. Thanks to Dan Montgomery for the suggestion.
Adding .DS_Store to Git ignore.
Ignore html files living in the main directory (likely being used for testing).
Fixed some spacing issues.
Landing the initial jQuery.require() work. Need to add in remote script queueing.
Make sure that the correct args are passed in to the filter callback (and by extension, the not callback). Fixes #5594.
Make sure that calling .width(num) or .height(num) on an empty set returns the empty set. Fixes #5600.
Rewrote .merge() (faster and less obtuse now). Fixed #5610.
Restrict the attr quick setters to only methods that specifically ask for the functionality. Fixes #5612.
Fix up whitespace and a couple of glitches.
Make sure that the defaultView exists before attempting to get at the computedStyle (makes it easier to hide items that don't have a view). Fixes #5619.