aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core
Commit message (Collapse)AuthorAgeFilesLines
* New release 1.3.3 because 1.3.2 only is compatible with 2.5.x. Fixes issue 176release-1.3.3Manuel Carrasco Moñino2013-04-093-4/+4
|
* Removed unused maven pluginrelease-1.3.2Manuel Carrasco Moñino2013-03-151-15/+0
|
* Changing version so as we can release gquery 1.3.2Manuel Carrasco Moñino2013-03-151-2/+2
|
* Enclose println used warn the user in dev mode in a block so as it does not ↵Manuel Carrasco Moñino2013-03-153-5/+10
| | | | generates any code in production
* Remove commentManuel Carrasco Moñino2013-03-141-1/+0
|
* Implementation of prop methods so as we can read any property from any JSO ↵Manuel Carrasco Moñino2013-03-148-61/+188
| | | | and not only boolean. The implementation uses java generics. Updated to gwt 2.5.1
* Bugfix: loop when calling ajax method. Fixes issue 174Manuel Carrasco Moñino2013-03-011-1/+1
|
* Dont add more callbacks when disabledManuel Carrasco Moñino2013-02-271-9/+10
|
* Test callbacks disable methodManuel Carrasco Moñino2013-02-272-1/+5
|
* memory elements should be fired after adding new elements, and memory should ↵Manuel Carrasco Moñino2013-02-272-27/+45
| | | | be reset when a new fire comes. More tests
* First step towards supporting Deferred: implementing Callbacks collectionsManuel Carrasco Moñino2013-02-226-3/+326
|
* Fix null exceptionManuel Carrasco Moñino2013-02-221-1/+3
|
* Fix edge case when properties string ends with comaManuel Carrasco Moñino2013-02-222-2/+3
|
* Implement some methods which are in jquery but they werent in jsquery and ↵Manuel Carrasco Moñino2013-02-206-66/+135
| | | | gquery
* Fixed jsni exception when running certain selectors in IE8Manuel Carrasco Moñino2013-02-121-1/+1
|
* Remove unused importManuel Carrasco Moñino2013-02-081-1/+0
|
* Adding a utility function to call external functions from gwt without ↵Manuel Carrasco Moñino2013-02-083-5/+50
| | | | writing jsni
* Allow arbitrary string as parameter when adding new elements to dom. Fixes ↵Manuel Carrasco Moñino2013-02-082-2/+10
| | | | issue 128
* Change method signatureManuel Carrasco Moñino2013-02-071-1/+1
|
* Remove attribute after the property is set to null. Fixes issue 165Manuel Carrasco Moñino2013-02-073-3/+24
|
* Fixes issue 170Manuel Carrasco Moñino2013-02-071-1/+1
|
* Update javadocs so as we explain better the meaning of a dollar in the key ↵Manuel Carrasco Moñino2013-02-071-23/+39
| | | | part of animation parameters. Fixes issue 168 (google). Fixes issue #5 (github).
* Setting version to next snapshot iterationManuel Carrasco Moñino2013-02-071-2/+2
|
* Setting pom version to last stable one so as we can tag itManuel Carrasco Moñino2013-02-071-2/+2
|
* fix issue #12jdramaix2013-01-231-0/+7
|
* fix issue #12jdramaix2013-01-231-0/+6
|
* Merge pull request #4 from gwtquery/jd_offsetJulien Dramaix2013-01-212-12/+88
|\ | | | | Fix for issue #3
| * implement other signature of offset() method. Fix for issue 161 (google ↵jdramaix2013-01-072-12/+88
| | | | | | | | code)/ issue #3 (github)
* | Merge pull request #6 from gwtquery/jd_issue168Julien Dramaix2013-01-211-2/+2
|\ \ | | | | | | javadoc correction : fix issue #5 (github)/ issue 168 (google code)
| * | javadoc correction : fix issue #5 (github)/ issue 168 (google code)jdramaix2013-01-071-2/+2
| |/
* | Merge pull request #7 from gwtquery/jd_event_delegationJulien Dramaix2013-01-213-16/+175
|\ \ | | | | | | Add support for namespace/ multiple events in live and die methods
| * | handle special event mouseenter or mouseleave in live and die methodjdramaix2013-01-072-14/+27
| | |
| * | Add support for namespace/ multiple events in live and die methodsjdramaix2013-01-073-14/+160
| |/
* / Fix NPE when passing null functionsManuel Carrasco Moñino2013-01-201-3/+5
|/
* Dont force position in animations when it is fixed. Fixes issue 160Manuel Carrasco Moñino2012-12-171-1/+1
|
* Handle attachment of widgets created with elements which already belong to a ↵Manuel Carrasco Moñino2012-12-171-9/+34
| | | | widget. Fixes issue 163
* use DOM class to manipulate the original gwt event listener attributeManuel Carrasco Moñino2012-12-171-5/+3
|
* javadoc for method Properties.set(T, Function). Related with issue 154Manuel Carrasco Moñino2012-12-101-0/+7
|
* Dont dispatch new added events when running the events dispatch loop. Fixes ↵Manuel Carrasco Moñino2012-12-102-1/+19
| | | | issue 152
* dont set tabIndex to window. Fixes issue 157Manuel Carrasco Moñino2012-12-101-1/+3
|
* Add @Shardable to linker. Fixes issue 159Manuel Carrasco Moñino2012-12-101-0/+2
|
* Fix isFunction in safari for ipadManuel Carrasco Moñino2012-12-071-32/+33
|
* Check filter parameter to avoid out of bound exception, issue seem in jsqueryManuel Carrasco Moñino2012-11-301-0/+4
|
* End lines with LF instead of CRLFManuel Carrasco Moñino2012-11-26158-11854/+11854
|
* Removing unneeded call to method $ in many places. Removing generic dollar ↵Manuel Carrasco Moñino2012-11-263-22/+14
| | | | method, not needed since we have the $(Object) signature
* enable default module to compile, so as it can be run with JenkinsManuel Carrasco Moñino2012-11-261-2/+1
|
* Removing GqUi to WidgetsUtils so as gquery doesnt have anything out of its ↵Manuel Carrasco Moñino2012-11-266-96/+95
| | | | namespace (access protected methods using jsni)
* Fix tests for htmlunit in 2.5.0 and for chrome-prod modeManuel Carrasco Moñino2012-11-267-209/+206
|
* Adding getTextAsBoolean and getTextAsEnum to xmlbuildersManuel Carrasco Moñino2012-11-262-4/+20
|
* mergeManuel Carrasco Moñino2012-11-261-5/+5
|\