aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core
Commit message (Collapse)AuthorAgeFilesLines
...
* disable very slow testsManolo Carrasco2011-08-271-1/+5
|
* Fix cre tests: add method was broken because it was adding elements in the ↵Manolo Carrasco2011-08-273-19/+31
| | | | reverse order.
* support for :radio and :checkbox pseudoselectors. Fixes issue_100.Manolo Carrasco2011-08-262-8/+18
|
* update Lazy interfaceManolo Carrasco2011-08-261-4/+42
|
* Fix attr and removeAttr with checked, Fixes issue97. Thanks to @arny.ok for ↵Manolo Carrasco2011-08-262-7/+30
| | | | the code
* This change should not be committed in r771Manolo Carrasco2011-08-261-7/+0
|
* Fix val() methods to behave identical to jquery. This could break apps. ↵Manolo Carrasco2011-08-262-94/+189
| | | | Thanks to @arny.ok for realising the issue an sending code proposals
* Adding a test unit for issue97Manolo Carrasco2011-08-251-1/+10
|
* fix issue 98Julien Dramaix2011-08-242-12/+54
|
* Fix visibility poperty when using stop(). Fix delay calling dequeue twice. ↵Manolo Carrasco2011-08-197-34/+26
| | | | Now named queue do not run dequeue like jquery does. Fix css2xpath when string literals contains # at the begining
* Adding a missing method which made gquery.queue() enter in a loopManolo Carrasco2011-08-101-0/+13
|
* Merged SimpleNamedQueue in QueuePlugin classManolo Carrasco2011-08-016-140/+150
|
* Avoid Fx class depending on CSS statics, now CSS stuff should be added when ↵Manolo Carrasco2011-08-012-14/+16
| | | | the user specifically uses it
* version in trunk should be SNAPSHOTManolo Carrasco2011-08-011-1/+1
|
* handle empty properties valuesManolo Carrasco2011-07-292-2/+3
|
* avoid constant reflow in hide() and show() methodJulien Dramaix2011-07-291-7/+33
|
* use default display value instead of "block", fixes issue94Manolo Carrasco2011-07-292-1/+25
|
* update lazy interfaces, deprecated visible() method in favor of isVisible()Manolo Carrasco2011-07-282-5/+4
|
* implement :hidden and :visible pseudo selectors, fixes issue86Manolo Carrasco2011-07-287-49/+99
|
* xpath selectors available when using SelectorEngineCssToXPathManolo Carrasco2011-07-183-11/+6
|
* Fix getQueueType which was failing when extending Effects because of the ↵Manolo Carrasco2011-07-173-26/+12
| | | | classname
* fix dequeueManolo Carrasco2011-07-174-6/+8
|
* Changing line used for testingManolo Carrasco2011-07-171-1/+2
|
* Now the user can disable all effects using Fx.off = true like jquery doesManolo Carrasco2011-07-176-85/+104
|
* Filter selectors before sending them to the closed method. It improves a bit ↵Manolo Carrasco2011-07-152-17/+51
| | | | performance
* :first and :last commit introduced a regression in benchmarking, this fixes ↵Manolo Carrasco2011-07-151-1/+1
| | | | it since first-child and last-child are executed in the native engine which is pretty faster
* queue method should return the number of elements in the queue if no ↵Manolo Carrasco2011-07-154-2/+42
| | | | functions are proviced like jquery does
* Add validation dependencies to avoid warnings when running tests. Change ↵Manolo Carrasco2011-07-1511-73/+132
| | | | gotoEnd parameter to boolean like jquery does. When jumtoEnd == true run callback functions. Jaadocs
* fix NPE when context is nullManolo Carrasco2011-07-141-1/+1
|
* move the input focus to the first element. Fixes issue83Manolo Carrasco2011-07-141-5/+14
|
* Accept an array of optional functions in the delay method to be run after ↵Manolo Carrasco2011-07-146-65/+131
| | | | the delayed time. Named queue now executes dequeue if the programmer did not. Javadocs
* handle scrollLeft and scrollTop in animations. Fixes issue91Manolo Carrasco2011-07-141-3/+5
|
* animate accept a string or a properties object as argumentManolo Carrasco2011-07-142-7/+11
|
* Accept hyphenized keys when creating properties, so as we can copy and paste ↵Manolo Carrasco2011-07-141-1/+7
| | | | css properties
* set poms version to 1.0.1-SNAPSHOTManolo Carrasco2011-07-141-1/+1
|
* fix xpath when tag is omittedManolo Carrasco2011-07-132-2/+2
|
* fix compilationManolo Carrasco2011-07-131-1/+1
|
* querySelectorAll does not support numeric ids, so use getElementByIdManolo Carrasco2011-07-136-16/+22
|
* adding :odd :even :first :last pseudo selectors in xpath implementation. ↵Manolo Carrasco2011-07-123-3/+10
| | | | Related issue86
* return the plugin in registerPlugin. Fixes issue84Manolo Carrasco2011-07-082-12/+9
|
* Fix a NPE when passing non-native selectors to xpath engine (fixes issue87). ↵Manolo Carrasco2011-07-083-21/+104
| | | | Validate xpath syntax when generating xpath selectors.
* Fix for Issue 88: $(selector).stop() should immediately stop currently ↵Julien Dramaix2011-06-257-43/+144
| | | | running animation.
* don't apply event stuff on text and comment node !Julien Dramaix2011-06-091-9/+37
|
* fix issue 81Julien Dramaix2011-06-092-4/+16
|
* Roolback untested modification of focus methodJulien Dramaix2011-05-281-7/+1
|
* - add prop() method (patch from Alessandro Bollini)Julien Dramaix2011-05-283-1/+139
| | | | - add tests
* - Refactor cleanHtmlString method and fix issue 78Julien Dramaix2011-05-263-33/+150
| | | | - add test with html snippet.
* Fix issue 80 : remove references of gquery classes in GqUiJulien Dramaix2011-05-232-67/+63
|
* javadocManolo Carrasco2011-05-072-1/+13
|
* Accept xpath selectors and pass them to the native engine, it should work in ↵Manolo Carrasco2011-05-074-16/+40
| | | | most browsers, IE is not supported