summaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)Author
2014-11-03Fixes #121 - Large part of map unclickable due to autocomplete suggestionsAlon Levy
See http://stackoverflow.com/questions/5643767/jquery-ui-autocomplete-width-not-set-correctly/11845718#11845718 A relevant bug on jquery-ui for width: http://bugs.jqueryui.com/ticket/7303 Additionally I considered measuring the exact width before noticing I can set the width to 10px and the text itself is perfectly clickable, see: http://stackoverflow.com/questions/6961022/measure-bounding-box-of-text-node-in-javascript
2014-11-03update jquery-ui.js to v1.11.2Alon Levy
2014-11-03fixes #79; note that hightlightNode sucksAlon Levy
It should be implemented as setting a chosen state, containing id's of chosen nodes and possibly links as well (although links are defined by their source and target ids).
2014-11-03accidentally left verbose onAlon Levy
2014-11-03fix whitespaceAlon Levy
2014-11-03fixes #122: show node text edit box over node regardless of position/zoomAlon Levy
2014-11-03fix _addNodeNoHistory to correctly look for existing nodesAlon Levy
2014-11-03change id to be distinct from nameAlon Levy
TODO: introduce a Node class split from the Graph. TODO: use a GUID and not just an incrementing number (trivial change).
2014-11-03drag_n_drop: fix load break on graph.js introduction (Fixes #123)Alon Levy
2014-11-02graph: make addNodeNoHistory internalAlon Levy
2014-11-02graph: fix missing semicolonAlon Levy
2014-11-02getting rid of bad object names: myGraph -> GraphLV-426
2014-11-02fix borked tests - must use typeof to avoid exception on undefined variableAlon Levy
2014-11-02move .gitignore from scripts to rootAlon Levy
2014-11-02split off model/graph.jsAlon Levy
2014-11-02add a gitignored local_config for the urlArgsAlon Levy
.. cache busting feature so it won't be accidentally committed
2014-11-02recomment 'urlArgs', causes debug script naming issuesLV-426
2014-10-31rhizicore: have a default size for nodes to avoid setting circle.r to nanAlon Levy
2014-10-29fix multiple warnings from zed (zedapp.org)Alon Levy
css: use 0 instead of 0px (0 doesn't need a unit) fallback rgb(r,g,b) for rgba code: missing semicolons don't use initial caps for a function name unused variables
2014-10-29small move to allow numeric id; not enoughAlon Levy
2014-10-29save/load xy positionAlon Levy
2014-10-28robot: unbreak - setting value doesn't trigger input eventAlon Levy
Broken since e299a57a72ee786818cad4f9b8e3aea3b6fb8544 Polling replaced by input event. Polling was a catch all - it checked value change. catching events requires they be thrown, so throw an input even explicitly from robot.
2014-10-28history: show last logged action (ui has negative z-index)Alon Levy
2014-10-28make debug ui click handlers only apply to the labels, remove some debug printsAlon Levy
2014-10-28history/rhizicore: record zoom events; zoom g element selector: svg g.zoomAlon Levy
2014-10-28history: refactor action key to record parameterAlon Levy
2014-10-28textanalysis.ui: use input event if it exists, fallback to polling of 50ms ↵Alon Levy
(not 5ms) otherwise
2014-10-28textanalysis{,.ui}: fix remaining globals, use strictAlon Levy
2014-10-28wip/history zoomAlon Levy
2014-10-27Fixes #116 - no star graph for a single nodeAlon Levy
2014-10-27textanalysis: s/abnormalGraph/starGraph/Alon Levy
2014-10-26history switch to events; using a single GRAPH_DIFF action. todo - replay; ↵Alon Levy
zoom in/out; clicks on nodes/edges
2014-10-26introduce signal, start using in history; use consts for signal nameAlon Levy
introduces two new modules: scripts/consts.js scripts/signal.js signal is a thin wrapper for jquery('window').on and jquery('window').trigger, which seems like an adaquete signal library - there are faster things around, but why introduce another dependency.
2014-10-26textanalysis: protect from temp nodes on finalize (all these patches - need ↵Alon Levy
to rewrite that and heavily test it)
2014-10-26textanalysis (#86): make star case avoid an empty string that was causing a ↵Alon Levy
chainlink temp node created from ''
2014-10-26s/const/var/ ES6 defines const, not there yetAlon Levy
2014-10-26Fixes #86Alon Levy
2014-10-26textanalysis: use constsAlon Levy
2014-10-26textanalysis: whitespace fix (same line touched by last patch)Alon Levy
2014-10-26remove extra spaces around 'and' nodesAlon Levy
2014-10-26Fixes #114Alon Levy
In * case sentence - Description contains quote marks for multiple worded sentence
2014-10-26textanalysis: factor out tokenizeAlon Levy
2014-10-26Fixes #96 URL property in node isn't saved to JSONAlon Levy
2014-10-24textanalysis.ui: shift-tab now changes type back, tab forwardAlon Levy
2014-10-24fixes #106Alon Levy
broken by define addition (require.js)
2014-10-24robot: fix undefined variable from define additionAlon Levy
2014-10-21test_analyzer: better testAlon Levy
need better graph accessors to give only the 'real' nodes & links - that will fix some of the tests, leaving the real wrong ones
2014-10-21fix test_analyzer after require.jsAlon Levy
2014-10-21rhizicore: remove unused variableAlon Levy
2014-10-21oops - removed d3 accidentallyAlon Levy