summaryrefslogtreecommitdiff
path: root/src/client/view/textanalyser_input.js
AgeCommit message (Collapse)Author
2015-06-04add copyright and license headers for GNU AGPL v3Alon Levy
2015-05-04client: update selected type prompt based on cursorAlon Levy
2015-04-13client: textanalyser_input: completion add two spaces. fixes #484Alon Levy
2015-03-17client: Bacon/jquery dependency: use shimAlon Levy
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
2015-03-12client: use some more VK constantsAlon Levy
2015-03-08client/textanalyser_input: completer options: small rewriteAlon Levy
2015-03-08client/completion: support links as wellAlon Levy
the suggestions from textanalysis now come as a dictionary with {nodes: {name: id}, links: {name: id}} (before it was a single dictionary, {name:id}) And the options bus for the textanalyser and search completion have been updated accordingly. textanalyser also takes into account the cursor position to determine which of the option dictionaries to use.
2015-03-08textanalyuser_input: provide bus for analysis results events (post analysis, ↵Alon Levy
required for completion updates)
2015-03-08client: fix up/down being handled both by completer and by type selector ↵Alon Levy
when shift pressed
2015-03-07client: use shift-up and shift-down for node type changesAlon Levy
2015-03-03client/textanalyser_input: remove debug printAlon Levy
2015-03-03client/textanalyser_input: use classesAlon Levy
2015-03-03client/text_analyser_input: fix cursor position move on enterAlon Levy
2015-03-03client/text_analyser_input: specify setter+getter+selectionStart for ↵Alon Levy
completer, plus some cleanup
2015-03-02client: extract textanalyser_input componentAlon Levy
Killed some dead code in the process.