| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
cur_rzdoc_name
|
|
|
|
add shim requirement for Bacon to have jquery loaded first, since Bacon
patches in asEventStream (and other APIs).
Undo the Bacon_wrapper non fix:
git grep -l Bacon_wrapper | while read f; do sed -i -e s/Bacon_wrapper/Bacon/g $f; done
|
|
|
|
Sanitizes any link attribute change. Topo diff in next patch since I
might want to reverse it - current interface doesn't allow introducing
null link names on creation.
|
|
|
|
|
|
attributes
|
|
Fixes #358
Implementation limitations:
- uses hasOwnProperty for search, and further filters on strings. So
technically could be oversearching - i.e. string properties that are
not attributes. We should keep an attribute key on Node and Link
- there is no selected link, just selected nodes. So we select both
source and destination. Opening issue #367 for this.
|
|
|
|
|
|
|
|
|
|
|
|
before Bacon
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Still missing:
remove host/port, let client use same as url it was served on.
remove other flags no longer relevant.
better mapping of server config to avoid double work?
|
|
|
|
|
|
|
|
Object.defineProperty
|
|
|
|
|
|
|
|
|
|
|
|
This reverts commit f17c7d27b510c033aa2861598e49a90c56aa9a13.
|
|
not undefined (undefined not appropriate for this case.
|
|
This is a hack, here is the code comment:
FIXME: should not do a server roundtrip, should keep this data local
and part of the temporary graph, and send it on user enter in a single commit.
The current implementation is just a quick way to get sorta the same outcome.
it misses atomicity (since we create a commit for every tab click on an existing node),
and responsiveness (since there is a roundtrip to the server and it isn't client side)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
containing the same key
|
|
together with previous server commit Fixes #257
|
|
|
|
|