| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
jQuery. The main changes were implementing :has() where necessary to replace functionality that no longer existed and to use noConflict() so the libraries wouldn't have to be modified for the speed testing.
So now the file jquery-basis.js will be tested against the jquery.js in the /dist directory. Version 1.2.1 is currently in jquery-basis.js.
|
|
|
|
| |
node names like .filter() and other functions do. This puts in place possible fixes for tickets like #1991 where XML and HTML differ in case-sensitivity.
|
|
|
|
| |
series of tickets including #1264 where the context of the DOM manipulation was a problem in xml and iframe documents.
|
|
|
|
|
|
|
| |
turned out most of them had already been implemented. The last ones necessary were in .domManip() with when a <table> was 'this' and for .text(). Adding these last changes seems to make dom and text manipulation in IE frames possible. Unit test cases were added as well.
In addition "submit.gif" was removed from the test suite index.html since it didn't exist.
|
| |
|
| |
|
|
|
|
| |
in IE
|
| |
|
|
|
|
| |
context and if isn't default to other contexts.
|
|
|
|
| |
The JS error was fixed by checking to make sure 'opacity=' is in the filter before seeing what its value is.
|
| |
|
| |
|
|
|
|
| |
just appending.
|
|
|
|
| |
many simultainous requests. I re-enabled it when I found a bug that might have been the cause of the failure instead and it seems to work fine. We can disable it again if that ends up not being the case.
|
|
|
|
|
|
|
| |
misunderstanding of how the extra function was supposed to work in jQuery.event.trigger(). That said, it seems more useful and robust for the code to work the way the ticket author thought it should work so this change was made.
Now, if anything is returned from the extra function it will overwrite the return value of the event handlers. This should only effect custom events unless someone had an extra function that returned a value other than false which would have been ignored before.
|
| |
|
|
|
|
|
|
|
| |
additional functionality. The first parameter clearQueue will clear the queue on the necessary DOM elements so all animation will stop. The second parameter will cause the currently playing animation to immediately complete including reseting original styles on show and hide and calling the callback function. If no parameters are passed it will work as it always did.
While adding unit testing I noticed the stop() unit test wasn't working correctly because the element was hidden so I fixed it and added more unit tests around the new functionality. I also added a cursor:pointer to the css (because for a long time I didn't know they were clickable).
|
|
|
|
| |
.extend()-ed.
|
|
|
|
| |
eval. With the new globalEval() code that should no longer be a problem.
|
|
|
|
| |
case, $.getJSON() wasn't working from a remote host. I went ahead and added a unit test then added the s.dataType == "json" test for a remote <script> load. The said that json was allowed but the dataType check was missing. This appears to have fixed the bug across all browsers.
|
|
|
|
| |
since jquery uses the actual xmlhttprequest object.
|
|
|
|
| |
to fix the bug and might not be desired.
|
| |
|
|
|
|
| |
what all browsers but IE did. This will bring IE in line with the others and fix the bug.
|
| |
|
| |
|
|
|
|
| |
height css. The fix itself is slightly different as it was moved to .css() instead of staying in .attr() like in his patch. I decided there was less chance of incorrect behavior (like if someone had an XML file with a width attribute that could be negative). Also took out some unneeded white space while I was in there.
|
|
|
|
| |
the property is width or height it gets the values through calculation instead of just css first. This appears to fix the problem in Opera without hurting any of the other browsers.
|
|
|
|
| |
sub-element. The side effect is the event will not stop default behavior and will propagate which it didn't used to. I could find no compelling reason to stop those things from happening.
|
| |
|
| |
|
|
|
|
| |
maxlength, defaultValue, selectedIndex, tagName and nodeName.
|
|
|
|
| |
The test was setting .html() to many divs, some of which were inside other divs effectly deleting them from the DOM. I suspect this caused some instability and may only have been an IE7 with IEDevBar issue. The test still correctly tests the functionality of that unit test.
|
|
|
|
| |
option.
|
|
|
|
| |
files. This was the only change for this changeset. To see it try: 'svn diff -x --ignore-eol-style -r 3841:3842' and there will be no diffs. (actual revision numbers are an educated guess)
|
|
|
|
| |
which sometimes dropped values incorrectly. Also fixed a bug where on deep copies the target copied over itself (i = 2 addition). Last made code handle the case when a property might have a string in it that should be overwritten by an object.
|
|
|
|
| |
be replaced with String.match().
|
|
|
|
| |
added unit test and had to fix a selector test that was broken by the new testing div in test/index.html. Last made some whitespace changes.
|
| |
|
|
|
|
| |
white space changes in selector.js.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
errors as seen in bug #1742.
|
| |
|
|
|
|
| |
tests for noConflict.
|
| |
|
|
|
|
| |
animation was causing issues.
|