summaryrefslogtreecommitdiff
path: root/scripts/textanalysis.ui.js
AgeCommit message (Collapse)Author
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-26history switch to events; using a single GRAPH_DIFF action. todo - replay; ↵Alon Levy
zoom in/out; clicks on nodes/edges
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-21fix test_analyzer after require.jsAlon Levy
2014-10-20introduce require.js and rewrite testsAlon Levy
Yes, I'm being lazy. The purpose of require.js is to allow writing modules, i.e. individual smaller then the whole files with clear dependencies. This is achieved by using a new api provided by require.js: define, require, requirejs Read more at [requirejs] (http://requirejs.org) Tests have been rewritten to work correctly with require.js; they still use jsdom. Test output is now stored in the repository, all tests are run via run_tests.js; This is a hack - once a good harness (with assertions, suites - unittest like) presents itself it will be used. Hidden here is also using FileSaver for history saving, so history is saved to history.json instead to a random name. Plus dropping some dead code.