summaryrefslogtreecommitdiff
path: root/src/view
AgeCommit message (Collapse)Author
2014-12-16moving files around after repository mergerAlon Levy
2014-12-16node_indo: exported module symbolsLV-426
2014-12-16node_info: rename _get_form() -> _get_form_data()LV-426
2014-12-16node_info: remove on_save/delete proxy functionsLV-426
2014-12-14completer: textContent is the equivalent of innerText in firefox. yes, ↵Alon Levy
jquery would hide this.A
2014-12-14completer: small refactor of clicksAlon Levy
2014-12-08completer: remove debug logsAlon Levy
2014-12-08completer: tab key can also hide, disabled on input since tab has other ↵Alon Levy
function there
2014-12-08completer: escape hides; anything else showsAlon Levy
2014-12-08innerHTML does what it claims, use innerText; Fixes #201Alon Levy
2014-12-08selection: export node_selected for reordering nodesAlon Levy
2014-12-08add a new state: "related"Alon Levy
2014-12-08add another completer for search; missing | as triggerStart (should use RegExp)Alon Levy
2014-12-07node_info cleanupAlon Levy
show correct fields per node type don't accumulate callbacks (was unusable) update dialog on save with type change - no need to click node again
2014-12-07fix broken edit box - accidentally changed id, broke onsubmit settingAlon Levy
2014-12-06new info box (now card) styling - PartialOfer Lehr
added a class to the info card to style different types in css. also rearranged colors in helpers.js (alon: changed implementation and broke the edit, will fix in the morning)
2014-12-06Node info edit - make name editable (Partial #189)Alon Levy
2014-12-06completer: case insensitive inputAlon Levy
2014-12-06completer: quote words with spacesAlon Levy
2014-12-06completer: add minimum_length = 1Alon Levy
2014-12-06completer: remove unused APIAlon Levy
2014-12-06completer: fix prev_option, forgot modulu works correctly only with positivesAlon Levy
2014-12-06completer: hide unless 1 or more elements; Fixes #185Alon Levy
2014-12-06completer: use triggerStart & triggerEndAlon Levy
2014-12-06datepicker is part of jquery-ui, not required as a separate fileAlon Levy
2014-12-06nicer looking autocompleteOfer Lehr
added a class to the items inside the suggestion box so we could style them.
2014-12-05accidental inner loop that should have been side by side. Thanks Dor!Alon Levy
2014-12-05remove two console debug prints in completerAlon Levy
2014-12-05remove two console logs in last commitAlon Levy
2014-12-05replace jquery.autocomplete with our own autocompletionAlon Levy
Missing: - handling dropdown in the middle of the sentence correctly (almost there, extra space added) - clicking changes focus (transition event related?) and .focus() doesn't work - could not find how to fix it.
2014-12-04Partial #162Alon Levy
2014-12-04selection: unbreak searchAlon Levy
2014-12-04selection: keep selected nodes state, correctly notices switch from two node ↵Alon Levy
selection to single node selection
2014-12-04fix selection inversion: Fixes #144Alon Levy
2014-12-04selection: add update (reduces code in rz_core)Alon Levy
2014-12-03"use strict" must be firstAlon Levy
Firebug 3.0 alpha or Firefox nightly 37 says: SyntaxError: 'use strict' statement won't be enforced as a directive because it isn't in directive prologue position
2014-12-03Fix TypeError: variable _ redeclares argumentAlon Levy
2014-12-03Fix #157: temp nodes are always selectedAlon Levy
2014-11-28Changed node types names resolving #162garbash
2014-11-24add searchAlon Levy
The added input lets you select by *oring* multiple space less expressions. i.e. 'a b' will find all nodes with name containing either 'a' or 'b'. Not the specification, will be remedied later (i.e. maybe tomorrow, who knows). excuse the bulk commit, this does 3 things: splits off selection logic into src/view/selection - handles setting state explicityl on Node's, still bad. - bad at least the 'selected' state (i.e. boolean) is in one place. - common point for clicking on nodes/edges and selecting view selection input makes graph.getConnectedNodesAndLinks accept an array and not just a single node implements the search functionality outlined in the first paragraph.
2014-11-23gantt -> timeline renameLV-426
2014-11-23call graph update via presenter, rm graph obj. manglingLV-426
2014-11-23timeline -> AMD formLV-426
2014-11-19node_info: fix 'id' showing rather than 'name'LV-426
2014-11-13rename scripts/ -> src/LV-426