Steve Howell
90777fd1fa
zjquery: Add parents() and set_parents_result().
2017-07-08 08:49:09 -04:00
Steve Howell
ccd821e29b
zjquery: Rename add_child() to set_find_results().
...
Hopefully this will make it more explicit that zjquery does
not truly simulate DOM, but it instead allows you to dynamically
set what you want the results of $('foo').find(some_selector)
to be.
2017-07-08 08:31:18 -04:00
Steve Howell
70407e080d
zjquery: Require explicit set_parent() calls.
...
Before this commit, we were erroneously setting up parents
as part of add_child() calls, but it's not necessarily the
case that those children are immediate children, and therefore
the first object is not necessarily the immediate parent.
2017-07-08 08:21:27 -04:00
Steve Howell
c91eca291c
zjquery: Remove broken code related to remove().
...
The logic to remove ourself from the parent's children wasn't
correct.
2017-07-08 07:57:02 -04:00
Steve Howell
b3848ed8bd
zjquery: Assert only one function gets triggered.
...
If multiple functions get called by trigger(), it is almost
certainly a sign of overly complex test setup.
2017-07-06 10:27:54 -04:00
Aditya Bansal
9c90a3d1a3
zjquery: Add get_on_handler().
2017-07-06 08:37:39 -04:00
Aditya Bansal
641b38f79b
zjquery: Add get_on_handlers().
2017-07-06 08:36:38 -04:00
Aditya Bansal
3b30701844
zjquery: Add selector param option to on() function.
2017-07-06 08:29:07 -04:00
Aditya Bansal
1ed499fffc
zjquery: Add stop() function.
2017-06-28 07:34:04 -04:00
Aditya Bansal
bd370993ea
zjquery: Add fadeTo() function.
2017-06-28 07:34:04 -04:00
Aditya Bansal
fb723f9477
zjquery: Reorder functions in lexographic order.
2017-06-28 07:34:04 -04:00
Yago González
8ae0c90e9f
zjquery: Return element in some jQuery methods.
...
jQuery's behavior in methods that, because of their nature, don't need to
return anything is to return the element itself in the jQuery object form.
Now the zjquery element is returned when one of these methods is called.
2017-06-26 08:38:21 -04:00
Yago González
1343216002
zjquery: Add select function.
2017-06-26 08:38:21 -04:00
Yago González
4b8a52cee0
zjquery: Handle passing elements to $().
...
There are some cases when the jQuery dollar
function is called with an element as argument.
If such element has already been created using
zjquery, we should simply return it.
2017-06-26 08:38:21 -04:00
Yago González
679325733d
zjquery: Add extend method.
2017-06-26 08:38:21 -04:00
Yago González
a9c8efe871
zjquery: Add keydown and keyup functions.
2017-06-26 08:38:21 -04:00
Yago González
ad154da174
zjquery: Add generic event setter/handler.
2017-06-26 08:38:21 -04:00
Joshua Pan
8a6e8906bd
zjquery: Add .click() function.
2017-06-20 19:49:23 -04:00
Steve Howell
e0d79acac0
zjquery: Add attr() method.
2017-06-16 14:58:27 -04:00
Steve Howell
f91dc2fec9
zjquery: Add prop() function.
2017-06-16 08:47:54 -04:00
Steve Howell
dc9ea24d79
zjquery: Add get().
2017-06-14 15:29:17 -04:00
Steve Howell
7722539504
zjquery: Add better trigger stubbing.
2017-06-14 15:26:41 -04:00
Steve Howell
5272b6644e
zjquery: Support $('<div>').html().
2017-06-14 08:17:03 -04:00
Steve Howell
736f4c2930
zjquery: Fix missing wrapper from last commit.
2017-06-12 07:43:04 -04:00
Steve Howell
8da391b51e
zjquery: Fix chaining semantics.
...
We now make it so that $('foo').addClass(whatever) and similar
functions properly return the wrapper object for chaining
purposes. We may eventually want to change the wrapper object
to automatically dispatch to the first child object, but this
should work for now.
2017-06-12 07:28:23 -04:00
Steve Howell
0b0c57bbe0
zjquery: Throw Error() object to get tracebacks.
...
If you throw a raw string in node, you don't get a traceback.
2017-05-31 09:10:43 -07:00
Steve Howell
689605dd2e
Introduce make_zjquery().
2017-05-24 17:41:41 -07:00
Steve Howell
46e72289d1
Add features to zjquery.
2017-05-24 17:41:41 -07:00
Steve Howell
4a062d47a6
Add more features to zjquery.
2017-05-24 13:08:54 -07:00
Steve Howell
1cb58d72b2
zjquery: Add focus/blur methods.
2017-05-23 18:52:25 -07:00
Steve Howell
cd08bbe7d8
zjquery: Add array-like functionality to elements.
...
(We simulate the behavior that a jquery object looks like an
array, but also has methods that can be called as if it were a
scalar.)
2017-05-23 18:52:25 -07:00
Steve Howell
4c520780a1
zjquery: Support $(func) flavor of $() calls.
2017-05-23 18:52:25 -07:00
Joshua Pan
f3369b266a
node_tests: Extract and create fake_jquery as zjquery.
...
This allows us to use fake_jquery (originally only in
compose_actions.js) in all our node tests.
2017-05-23 10:27:07 -07:00