├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE.txt ├── Makefile ├── README.rst ├── demo ├── .directory ├── clapper │ └── index.html ├── dictate │ └── index.html ├── landing │ ├── css │ │ ├── codemirror.css │ │ ├── custom │ │ │ ├── codemirror.css │ │ │ ├── codemirror.css.map │ │ │ ├── landing.css │ │ │ └── landing.css.map │ │ ├── skeleton.css │ │ └── skeleton.css.map │ ├── images │ │ ├── lego_key.jpeg │ │ └── section-bg.jpeg │ ├── index.html │ ├── js │ │ ├── codemirror.js │ │ ├── humaninput-latest.js │ │ ├── humaninput-latest.min.js │ │ └── mode │ │ │ ├── apl │ │ │ ├── apl.js │ │ │ └── index.html │ │ │ ├── asciiarmor │ │ │ ├── asciiarmor.js │ │ │ └── index.html │ │ │ ├── asn.1 │ │ │ ├── asn.1.js │ │ │ └── index.html │ │ │ ├── asterisk │ │ │ ├── asterisk.js │ │ │ └── index.html │ │ │ ├── brainfuck │ │ │ ├── brainfuck.js │ │ │ └── index.html │ │ │ ├── clike │ │ │ ├── clike.js │ │ │ ├── index.html │ │ │ ├── scala.html │ │ │ └── test.js │ │ │ ├── clojure │ │ │ ├── clojure.js │ │ │ └── index.html │ │ │ ├── cmake │ │ │ ├── cmake.js │ │ │ └── index.html │ │ │ ├── cobol │ │ │ ├── cobol.js │ │ │ └── index.html │ │ │ ├── coffeescript │ │ │ ├── coffeescript.js │ │ │ └── index.html │ │ │ ├── commonlisp │ │ │ ├── commonlisp.js │ │ │ └── index.html │ │ │ ├── crystal │ │ │ ├── crystal.js │ │ │ └── index.html │ │ │ ├── css │ │ │ ├── css.js │ │ │ ├── gss.html │ │ │ ├── gss_test.js │ │ │ ├── index.html │ │ │ ├── less.html │ │ │ ├── less_test.js │ │ │ ├── scss.html │ │ │ ├── scss_test.js │ │ │ └── test.js │ │ │ ├── cypher │ │ │ ├── cypher.js │ │ │ └── index.html │ │ │ ├── d │ │ │ ├── d.js │ │ │ └── index.html │ │ │ ├── dart │ │ │ ├── dart.js │ │ │ └── index.html │ │ │ ├── diff │ │ │ ├── diff.js │ │ │ └── index.html │ │ │ ├── django │ │ │ ├── django.js │ │ │ └── index.html │ │ │ ├── dockerfile │ │ │ ├── dockerfile.js │ │ │ └── index.html │ │ │ ├── dtd │ │ │ ├── dtd.js │ │ │ └── index.html │ │ │ ├── dylan │ │ │ ├── dylan.js │ │ │ ├── index.html │ │ │ └── test.js │ │ │ ├── ebnf │ │ │ ├── ebnf.js │ │ │ └── index.html │ │ │ ├── ecl │ │ │ ├── ecl.js │ │ │ └── index.html │ │ │ ├── eiffel │ │ │ ├── eiffel.js │ │ │ └── index.html │ │ │ ├── elm │ │ │ ├── elm.js │ │ │ └── index.html │ │ │ ├── erlang │ │ │ ├── erlang.js │ │ │ └── index.html │ │ │ ├── factor │ │ │ ├── factor.js │ │ │ └── index.html │ │ │ ├── fcl │ │ │ ├── fcl.js │ │ │ └── index.html │ │ │ ├── forth │ │ │ ├── forth.js │ │ │ └── index.html │ │ │ ├── fortran │ │ │ ├── fortran.js │ │ │ └── index.html │ │ │ ├── gas │ │ │ ├── gas.js │ │ │ └── index.html │ │ │ ├── gfm │ │ │ ├── gfm.js │ │ │ ├── index.html │ │ │ └── test.js │ │ │ ├── gherkin │ │ │ ├── gherkin.js │ │ │ └── index.html │ │ │ ├── go │ │ │ ├── go.js │ │ │ └── index.html │ │ │ ├── groovy │ │ │ ├── groovy.js │ │ │ └── index.html │ │ │ ├── haml │ │ │ ├── haml.js │ │ │ ├── index.html │ │ │ └── test.js │ │ │ ├── handlebars │ │ │ ├── handlebars.js │ │ │ └── index.html │ │ │ ├── haskell-literate │ │ │ ├── haskell-literate.js │ │ │ └── index.html │ │ │ ├── haskell │ │ │ ├── haskell.js │ │ │ └── index.html │ │ │ ├── haxe │ │ │ ├── haxe.js │ │ │ └── index.html │ │ │ ├── htmlembedded │ │ │ ├── htmlembedded.js │ │ │ └── index.html │ │ │ ├── htmlmixed │ │ │ ├── htmlmixed.js │ │ │ └── index.html │ │ │ ├── http │ │ │ ├── http.js │ │ │ └── index.html │ │ │ ├── idl │ │ │ ├── idl.js │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── jade │ │ │ ├── index.html │ │ │ └── jade.js │ │ │ ├── javascript │ │ │ ├── index.html │ │ │ ├── javascript.js │ │ │ ├── json-ld.html │ │ │ ├── test.js │ │ │ └── typescript.html │ │ │ ├── jinja2 │ │ │ ├── index.html │ │ │ └── jinja2.js │ │ │ ├── jsx │ │ │ ├── index.html │ │ │ ├── jsx.js │ │ │ └── test.js │ │ │ ├── julia │ │ │ ├── index.html │ │ │ └── julia.js │ │ │ ├── livescript │ │ │ ├── index.html │ │ │ └── livescript.js │ │ │ ├── lua │ │ │ ├── index.html │ │ │ └── lua.js │ │ │ ├── markdown │ │ │ ├── index.html │ │ │ ├── markdown.js │ │ │ └── test.js │ │ │ ├── mathematica │ │ │ ├── index.html │ │ │ └── mathematica.js │ │ │ ├── mbox │ │ │ ├── index.html │ │ │ └── mbox.js │ │ │ ├── meta.js │ │ │ ├── mirc │ │ │ ├── index.html │ │ │ └── mirc.js │ │ │ ├── mllike │ │ │ ├── index.html │ │ │ └── mllike.js │ │ │ ├── modelica │ │ │ ├── index.html │ │ │ └── modelica.js │ │ │ ├── mscgen │ │ │ ├── index.html │ │ │ ├── mscgen.js │ │ │ ├── mscgen_test.js │ │ │ ├── msgenny_test.js │ │ │ └── xu_test.js │ │ │ ├── mumps │ │ │ ├── index.html │ │ │ └── mumps.js │ │ │ ├── nginx │ │ │ ├── index.html │ │ │ └── nginx.js │ │ │ ├── nsis │ │ │ ├── index.html │ │ │ └── nsis.js │ │ │ ├── ntriples │ │ │ ├── index.html │ │ │ └── ntriples.js │ │ │ ├── octave │ │ │ ├── index.html │ │ │ └── octave.js │ │ │ ├── oz │ │ │ ├── index.html │ │ │ └── oz.js │ │ │ ├── pascal │ │ │ ├── index.html │ │ │ └── pascal.js │ │ │ ├── pegjs │ │ │ ├── index.html │ │ │ └── pegjs.js │ │ │ ├── perl │ │ │ ├── index.html │ │ │ └── perl.js │ │ │ ├── php │ │ │ ├── index.html │ │ │ ├── php.js │ │ │ └── test.js │ │ │ ├── pig │ │ │ ├── index.html │ │ │ └── pig.js │ │ │ ├── powershell │ │ │ ├── index.html │ │ │ ├── powershell.js │ │ │ └── test.js │ │ │ ├── properties │ │ │ ├── index.html │ │ │ └── properties.js │ │ │ ├── protobuf │ │ │ ├── index.html │ │ │ └── protobuf.js │ │ │ ├── puppet │ │ │ ├── index.html │ │ │ └── puppet.js │ │ │ ├── python │ │ │ ├── index.html │ │ │ ├── python.js │ │ │ └── test.js │ │ │ ├── q │ │ │ ├── index.html │ │ │ └── q.js │ │ │ ├── r │ │ │ ├── index.html │ │ │ └── r.js │ │ │ ├── rpm │ │ │ ├── changes │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── rpm.js │ │ │ ├── rst │ │ │ ├── index.html │ │ │ └── rst.js │ │ │ ├── ruby │ │ │ ├── index.html │ │ │ ├── ruby.js │ │ │ └── test.js │ │ │ ├── rust │ │ │ ├── index.html │ │ │ ├── rust.js │ │ │ └── test.js │ │ │ ├── sas │ │ │ ├── index.html │ │ │ └── sas.js │ │ │ ├── sass │ │ │ ├── index.html │ │ │ └── sass.js │ │ │ ├── scheme │ │ │ ├── index.html │ │ │ └── scheme.js │ │ │ ├── shell │ │ │ ├── index.html │ │ │ ├── shell.js │ │ │ └── test.js │ │ │ ├── sieve │ │ │ ├── index.html │ │ │ └── sieve.js │ │ │ ├── slim │ │ │ ├── index.html │ │ │ ├── slim.js │ │ │ └── test.js │ │ │ ├── smalltalk │ │ │ ├── index.html │ │ │ └── smalltalk.js │ │ │ ├── smarty │ │ │ ├── index.html │ │ │ └── smarty.js │ │ │ ├── solr │ │ │ ├── index.html │ │ │ └── solr.js │ │ │ ├── soy │ │ │ ├── index.html │ │ │ └── soy.js │ │ │ ├── sparql │ │ │ ├── index.html │ │ │ └── sparql.js │ │ │ ├── spreadsheet │ │ │ ├── index.html │ │ │ └── spreadsheet.js │ │ │ ├── sql │ │ │ ├── index.html │ │ │ └── sql.js │ │ │ ├── stex │ │ │ ├── index.html │ │ │ ├── stex.js │ │ │ └── test.js │ │ │ ├── stylus │ │ │ ├── index.html │ │ │ └── stylus.js │ │ │ ├── swift │ │ │ ├── index.html │ │ │ └── swift.js │ │ │ ├── tcl │ │ │ ├── index.html │ │ │ └── tcl.js │ │ │ ├── textile │ │ │ ├── index.html │ │ │ ├── test.js │ │ │ └── textile.js │ │ │ ├── tiddlywiki │ │ │ ├── index.html │ │ │ ├── tiddlywiki.css │ │ │ └── tiddlywiki.js │ │ │ ├── tiki │ │ │ ├── index.html │ │ │ ├── tiki.css │ │ │ └── tiki.js │ │ │ ├── toml │ │ │ ├── index.html │ │ │ └── toml.js │ │ │ ├── tornado │ │ │ ├── index.html │ │ │ └── tornado.js │ │ │ ├── troff │ │ │ ├── index.html │ │ │ └── troff.js │ │ │ ├── ttcn-cfg │ │ │ ├── index.html │ │ │ └── ttcn-cfg.js │ │ │ ├── ttcn │ │ │ ├── index.html │ │ │ └── ttcn.js │ │ │ ├── turtle │ │ │ ├── index.html │ │ │ └── turtle.js │ │ │ ├── twig │ │ │ ├── index.html │ │ │ └── twig.js │ │ │ ├── vb │ │ │ ├── index.html │ │ │ └── vb.js │ │ │ ├── vbscript │ │ │ ├── index.html │ │ │ └── vbscript.js │ │ │ ├── velocity │ │ │ ├── index.html │ │ │ └── velocity.js │ │ │ ├── verilog │ │ │ ├── index.html │ │ │ ├── test.js │ │ │ └── verilog.js │ │ │ ├── vhdl │ │ │ ├── index.html │ │ │ └── vhdl.js │ │ │ ├── vue │ │ │ ├── index.html │ │ │ └── vue.js │ │ │ ├── webidl │ │ │ ├── index.html │ │ │ └── webidl.js │ │ │ ├── xml │ │ │ ├── index.html │ │ │ ├── test.js │ │ │ └── xml.js │ │ │ ├── xquery │ │ │ ├── index.html │ │ │ ├── test.js │ │ │ └── xquery.js │ │ │ ├── yacas │ │ │ ├── index.html │ │ │ └── yacas.js │ │ │ ├── yaml-frontmatter │ │ │ ├── index.html │ │ │ └── yaml-frontmatter.js │ │ │ ├── yaml │ │ │ ├── index.html │ │ │ └── yaml.js │ │ │ └── z80 │ │ │ ├── index.html │ │ │ └── z80.js │ └── scss │ │ ├── base │ │ ├── _base-styles.scss │ │ ├── _functions.scss │ │ ├── _normalize.scss │ │ ├── _typography.scss │ │ ├── _utils.scss │ │ └── _variables.scss │ │ ├── custom │ │ ├── codemirror.scss │ │ └── landing.scss │ │ ├── modules │ │ ├── _buttons.scss │ │ ├── _code.scss │ │ ├── _forms.scss │ │ ├── _grid.scss │ │ ├── _lists.scss │ │ ├── _media-queries.scss │ │ ├── _spacing.scss │ │ └── _tables.scss │ │ └── skeleton.scss ├── pan │ ├── images │ │ └── misty_mountain.jpeg │ └── index.html ├── presentation │ ├── CHANGELOG.md │ ├── DOCUMENTATION.md │ ├── LICENSE │ ├── README.md │ ├── apple-touch-icon.png │ ├── bower.json │ ├── circle.yml │ ├── css │ │ ├── codemirror.css │ │ └── impress-demo.css │ ├── favicon.png │ ├── index.html │ ├── js │ │ ├── codemirror.js │ │ ├── humaninput-latest.js │ │ ├── humaninput-latest.min.js │ │ ├── impress.js │ │ └── mode │ ├── karma.conf.js │ ├── package.json │ └── test │ │ ├── bootstrap.js │ │ └── core_tests.js └── typing_game │ ├── .directory │ ├── blueBackground.gif │ ├── crate.gif │ ├── index.html │ ├── js │ ├── CSS2DRenderer.js │ ├── CSS3DRenderer.js │ ├── CanvasRenderer.js │ ├── Projector.js │ ├── TrackballControls.js │ ├── Tween.js │ ├── cannon.js │ ├── three.min.js │ └── threex.geometricglowmesh.js │ └── spark.png ├── dist ├── humaninput-1.1.15-full.js ├── humaninput-1.1.15-full.min.js ├── humaninput-1.1.15-full.min.js.gz ├── humaninput-1.1.15.js ├── humaninput-1.1.15.min.js ├── humaninput-1.1.15.min.js.gz └── humaninput-full.min.js ├── humaninput-latest.js ├── humaninput-latest.min.js ├── lib ├── clapper.js ├── clipboard.js ├── constants.js ├── events.js ├── example_plugin.js ├── feedback.js ├── gamepad.js ├── humaninput-full.js ├── humaninput.js ├── idle.js ├── keymaps.js ├── logger.js ├── pointer.js ├── polyfills.js ├── scroll.js ├── speechrec.js └── utils.js ├── package.json ├── src ├── clapper.js ├── clipboard.js ├── constants.js ├── events.js ├── example_plugin.js ├── feedback.js ├── gamepad.js ├── humaninput-full.js ├── humaninput.js ├── idle.js ├── keymaps.js ├── logger.js ├── pointer.js ├── polyfills.js ├── scroll.js ├── speechrec.js └── utils.js ├── tests ├── README.rst ├── events.js ├── hold.js ├── index.html ├── keyboard.js ├── pointer.js ├── sequences.js └── utils.js ├── version.txt └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/README.rst -------------------------------------------------------------------------------- /demo/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2015,10,28,21,22,57 3 | Version=3 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /demo/clapper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/clapper/index.html -------------------------------------------------------------------------------- /demo/dictate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/dictate/index.html -------------------------------------------------------------------------------- /demo/landing/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/css/codemirror.css -------------------------------------------------------------------------------- /demo/landing/css/custom/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/css/custom/codemirror.css -------------------------------------------------------------------------------- /demo/landing/css/custom/codemirror.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/css/custom/codemirror.css.map -------------------------------------------------------------------------------- /demo/landing/css/custom/landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/css/custom/landing.css -------------------------------------------------------------------------------- /demo/landing/css/custom/landing.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/css/custom/landing.css.map -------------------------------------------------------------------------------- /demo/landing/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/css/skeleton.css -------------------------------------------------------------------------------- /demo/landing/css/skeleton.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/css/skeleton.css.map -------------------------------------------------------------------------------- /demo/landing/images/lego_key.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/images/lego_key.jpeg -------------------------------------------------------------------------------- /demo/landing/images/section-bg.jpeg: -------------------------------------------------------------------------------- 1 | lego_key.jpeg -------------------------------------------------------------------------------- /demo/landing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/index.html -------------------------------------------------------------------------------- /demo/landing/js/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/codemirror.js -------------------------------------------------------------------------------- /demo/landing/js/humaninput-latest.js: -------------------------------------------------------------------------------- 1 | ../../../humaninput-latest.js -------------------------------------------------------------------------------- /demo/landing/js/humaninput-latest.min.js: -------------------------------------------------------------------------------- 1 | ../../../humaninput-latest.min.js -------------------------------------------------------------------------------- /demo/landing/js/mode/apl/apl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/apl/apl.js -------------------------------------------------------------------------------- /demo/landing/js/mode/apl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/apl/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/asciiarmor/asciiarmor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/asciiarmor/asciiarmor.js -------------------------------------------------------------------------------- /demo/landing/js/mode/asciiarmor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/asciiarmor/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/asn.1/asn.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/asn.1/asn.1.js -------------------------------------------------------------------------------- /demo/landing/js/mode/asn.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/asn.1/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/asterisk/asterisk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/asterisk/asterisk.js -------------------------------------------------------------------------------- /demo/landing/js/mode/asterisk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/asterisk/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/brainfuck/brainfuck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/brainfuck/brainfuck.js -------------------------------------------------------------------------------- /demo/landing/js/mode/brainfuck/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/brainfuck/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/clike/clike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/clike/clike.js -------------------------------------------------------------------------------- /demo/landing/js/mode/clike/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/clike/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/clike/scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/clike/scala.html -------------------------------------------------------------------------------- /demo/landing/js/mode/clike/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/clike/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/clojure/clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/clojure/clojure.js -------------------------------------------------------------------------------- /demo/landing/js/mode/clojure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/clojure/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/cmake/cmake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/cmake/cmake.js -------------------------------------------------------------------------------- /demo/landing/js/mode/cmake/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/cmake/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/cobol/cobol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/cobol/cobol.js -------------------------------------------------------------------------------- /demo/landing/js/mode/cobol/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/cobol/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/coffeescript/coffeescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/coffeescript/coffeescript.js -------------------------------------------------------------------------------- /demo/landing/js/mode/coffeescript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/coffeescript/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/commonlisp/commonlisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/commonlisp/commonlisp.js -------------------------------------------------------------------------------- /demo/landing/js/mode/commonlisp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/commonlisp/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/crystal/crystal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/crystal/crystal.js -------------------------------------------------------------------------------- /demo/landing/js/mode/crystal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/crystal/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/css/css.js -------------------------------------------------------------------------------- /demo/landing/js/mode/css/gss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/css/gss.html -------------------------------------------------------------------------------- /demo/landing/js/mode/css/gss_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/css/gss_test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/css/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/css/less.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/css/less.html -------------------------------------------------------------------------------- /demo/landing/js/mode/css/less_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/css/less_test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/css/scss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/css/scss.html -------------------------------------------------------------------------------- /demo/landing/js/mode/css/scss_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/css/scss_test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/css/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/css/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/cypher/cypher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/cypher/cypher.js -------------------------------------------------------------------------------- /demo/landing/js/mode/cypher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/cypher/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/d/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/d/d.js -------------------------------------------------------------------------------- /demo/landing/js/mode/d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/d/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/dart/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/dart/dart.js -------------------------------------------------------------------------------- /demo/landing/js/mode/dart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/dart/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/diff/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/diff/diff.js -------------------------------------------------------------------------------- /demo/landing/js/mode/diff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/diff/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/django/django.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/django/django.js -------------------------------------------------------------------------------- /demo/landing/js/mode/django/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/django/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/dockerfile/dockerfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/dockerfile/dockerfile.js -------------------------------------------------------------------------------- /demo/landing/js/mode/dockerfile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/dockerfile/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/dtd/dtd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/dtd/dtd.js -------------------------------------------------------------------------------- /demo/landing/js/mode/dtd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/dtd/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/dylan/dylan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/dylan/dylan.js -------------------------------------------------------------------------------- /demo/landing/js/mode/dylan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/dylan/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/dylan/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/dylan/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/ebnf/ebnf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ebnf/ebnf.js -------------------------------------------------------------------------------- /demo/landing/js/mode/ebnf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ebnf/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/ecl/ecl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ecl/ecl.js -------------------------------------------------------------------------------- /demo/landing/js/mode/ecl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ecl/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/eiffel/eiffel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/eiffel/eiffel.js -------------------------------------------------------------------------------- /demo/landing/js/mode/eiffel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/eiffel/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/elm/elm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/elm/elm.js -------------------------------------------------------------------------------- /demo/landing/js/mode/elm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/elm/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/erlang/erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/erlang/erlang.js -------------------------------------------------------------------------------- /demo/landing/js/mode/erlang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/erlang/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/factor/factor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/factor/factor.js -------------------------------------------------------------------------------- /demo/landing/js/mode/factor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/factor/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/fcl/fcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/fcl/fcl.js -------------------------------------------------------------------------------- /demo/landing/js/mode/fcl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/fcl/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/forth/forth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/forth/forth.js -------------------------------------------------------------------------------- /demo/landing/js/mode/forth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/forth/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/fortran/fortran.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/fortran/fortran.js -------------------------------------------------------------------------------- /demo/landing/js/mode/fortran/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/fortran/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/gas/gas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/gas/gas.js -------------------------------------------------------------------------------- /demo/landing/js/mode/gas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/gas/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/gfm/gfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/gfm/gfm.js -------------------------------------------------------------------------------- /demo/landing/js/mode/gfm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/gfm/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/gfm/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/gfm/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/gherkin/gherkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/gherkin/gherkin.js -------------------------------------------------------------------------------- /demo/landing/js/mode/gherkin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/gherkin/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/go/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/go/go.js -------------------------------------------------------------------------------- /demo/landing/js/mode/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/go/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/groovy/groovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/groovy/groovy.js -------------------------------------------------------------------------------- /demo/landing/js/mode/groovy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/groovy/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/haml/haml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/haml/haml.js -------------------------------------------------------------------------------- /demo/landing/js/mode/haml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/haml/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/haml/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/haml/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/handlebars/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/handlebars/handlebars.js -------------------------------------------------------------------------------- /demo/landing/js/mode/handlebars/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/handlebars/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/haskell-literate/haskell-literate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/haskell-literate/haskell-literate.js -------------------------------------------------------------------------------- /demo/landing/js/mode/haskell-literate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/haskell-literate/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/haskell/haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/haskell/haskell.js -------------------------------------------------------------------------------- /demo/landing/js/mode/haskell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/haskell/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/haxe/haxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/haxe/haxe.js -------------------------------------------------------------------------------- /demo/landing/js/mode/haxe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/haxe/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/htmlembedded/htmlembedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/htmlembedded/htmlembedded.js -------------------------------------------------------------------------------- /demo/landing/js/mode/htmlembedded/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/htmlembedded/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/htmlmixed/htmlmixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/htmlmixed/htmlmixed.js -------------------------------------------------------------------------------- /demo/landing/js/mode/htmlmixed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/htmlmixed/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/http/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/http/http.js -------------------------------------------------------------------------------- /demo/landing/js/mode/http/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/http/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/idl/idl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/idl/idl.js -------------------------------------------------------------------------------- /demo/landing/js/mode/idl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/idl/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/jade/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/jade/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/jade/jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/jade/jade.js -------------------------------------------------------------------------------- /demo/landing/js/mode/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/javascript/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/javascript/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/javascript/javascript.js -------------------------------------------------------------------------------- /demo/landing/js/mode/javascript/json-ld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/javascript/json-ld.html -------------------------------------------------------------------------------- /demo/landing/js/mode/javascript/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/javascript/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/javascript/typescript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/javascript/typescript.html -------------------------------------------------------------------------------- /demo/landing/js/mode/jinja2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/jinja2/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/jinja2/jinja2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/jinja2/jinja2.js -------------------------------------------------------------------------------- /demo/landing/js/mode/jsx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/jsx/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/jsx/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/jsx/jsx.js -------------------------------------------------------------------------------- /demo/landing/js/mode/jsx/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/jsx/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/julia/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/julia/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/julia/julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/julia/julia.js -------------------------------------------------------------------------------- /demo/landing/js/mode/livescript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/livescript/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/livescript/livescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/livescript/livescript.js -------------------------------------------------------------------------------- /demo/landing/js/mode/lua/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/lua/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/lua/lua.js -------------------------------------------------------------------------------- /demo/landing/js/mode/markdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/markdown/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/markdown/markdown.js -------------------------------------------------------------------------------- /demo/landing/js/mode/markdown/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/markdown/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/mathematica/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mathematica/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/mathematica/mathematica.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mathematica/mathematica.js -------------------------------------------------------------------------------- /demo/landing/js/mode/mbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mbox/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/mbox/mbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mbox/mbox.js -------------------------------------------------------------------------------- /demo/landing/js/mode/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/meta.js -------------------------------------------------------------------------------- /demo/landing/js/mode/mirc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mirc/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/mirc/mirc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mirc/mirc.js -------------------------------------------------------------------------------- /demo/landing/js/mode/mllike/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mllike/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/mllike/mllike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mllike/mllike.js -------------------------------------------------------------------------------- /demo/landing/js/mode/modelica/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/modelica/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/modelica/modelica.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/modelica/modelica.js -------------------------------------------------------------------------------- /demo/landing/js/mode/mscgen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mscgen/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/mscgen/mscgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mscgen/mscgen.js -------------------------------------------------------------------------------- /demo/landing/js/mode/mscgen/mscgen_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mscgen/mscgen_test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/mscgen/msgenny_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mscgen/msgenny_test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/mscgen/xu_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mscgen/xu_test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/mumps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mumps/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/mumps/mumps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/mumps/mumps.js -------------------------------------------------------------------------------- /demo/landing/js/mode/nginx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/nginx/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/nginx/nginx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/nginx/nginx.js -------------------------------------------------------------------------------- /demo/landing/js/mode/nsis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/nsis/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/nsis/nsis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/nsis/nsis.js -------------------------------------------------------------------------------- /demo/landing/js/mode/ntriples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ntriples/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/ntriples/ntriples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ntriples/ntriples.js -------------------------------------------------------------------------------- /demo/landing/js/mode/octave/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/octave/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/octave/octave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/octave/octave.js -------------------------------------------------------------------------------- /demo/landing/js/mode/oz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/oz/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/oz/oz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/oz/oz.js -------------------------------------------------------------------------------- /demo/landing/js/mode/pascal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/pascal/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/pascal/pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/pascal/pascal.js -------------------------------------------------------------------------------- /demo/landing/js/mode/pegjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/pegjs/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/pegjs/pegjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/pegjs/pegjs.js -------------------------------------------------------------------------------- /demo/landing/js/mode/perl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/perl/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/perl/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/perl/perl.js -------------------------------------------------------------------------------- /demo/landing/js/mode/php/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/php/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/php/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/php/php.js -------------------------------------------------------------------------------- /demo/landing/js/mode/php/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/php/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/pig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/pig/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/pig/pig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/pig/pig.js -------------------------------------------------------------------------------- /demo/landing/js/mode/powershell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/powershell/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/powershell/powershell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/powershell/powershell.js -------------------------------------------------------------------------------- /demo/landing/js/mode/powershell/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/powershell/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/properties/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/properties/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/properties/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/properties/properties.js -------------------------------------------------------------------------------- /demo/landing/js/mode/protobuf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/protobuf/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/protobuf/protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/protobuf/protobuf.js -------------------------------------------------------------------------------- /demo/landing/js/mode/puppet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/puppet/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/puppet/puppet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/puppet/puppet.js -------------------------------------------------------------------------------- /demo/landing/js/mode/python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/python/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/python/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/python/python.js -------------------------------------------------------------------------------- /demo/landing/js/mode/python/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/python/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/q/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/q/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/q/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/q/q.js -------------------------------------------------------------------------------- /demo/landing/js/mode/r/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/r/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/r/r.js -------------------------------------------------------------------------------- /demo/landing/js/mode/rpm/changes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/rpm/changes/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/rpm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/rpm/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/rpm/rpm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/rpm/rpm.js -------------------------------------------------------------------------------- /demo/landing/js/mode/rst/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/rst/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/rst/rst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/rst/rst.js -------------------------------------------------------------------------------- /demo/landing/js/mode/ruby/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ruby/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/ruby/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ruby/ruby.js -------------------------------------------------------------------------------- /demo/landing/js/mode/ruby/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ruby/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/rust/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/rust/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/rust/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/rust/rust.js -------------------------------------------------------------------------------- /demo/landing/js/mode/rust/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/rust/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/sas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/sas/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/sas/sas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/sas/sas.js -------------------------------------------------------------------------------- /demo/landing/js/mode/sass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/sass/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/sass/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/sass/sass.js -------------------------------------------------------------------------------- /demo/landing/js/mode/scheme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/scheme/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/scheme/scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/scheme/scheme.js -------------------------------------------------------------------------------- /demo/landing/js/mode/shell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/shell/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/shell/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/shell/shell.js -------------------------------------------------------------------------------- /demo/landing/js/mode/shell/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/shell/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/sieve/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/sieve/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/sieve/sieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/sieve/sieve.js -------------------------------------------------------------------------------- /demo/landing/js/mode/slim/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/slim/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/slim/slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/slim/slim.js -------------------------------------------------------------------------------- /demo/landing/js/mode/slim/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/slim/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/smalltalk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/smalltalk/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/smalltalk/smalltalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/smalltalk/smalltalk.js -------------------------------------------------------------------------------- /demo/landing/js/mode/smarty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/smarty/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/smarty/smarty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/smarty/smarty.js -------------------------------------------------------------------------------- /demo/landing/js/mode/solr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/solr/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/solr/solr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/solr/solr.js -------------------------------------------------------------------------------- /demo/landing/js/mode/soy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/soy/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/soy/soy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/soy/soy.js -------------------------------------------------------------------------------- /demo/landing/js/mode/sparql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/sparql/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/sparql/sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/sparql/sparql.js -------------------------------------------------------------------------------- /demo/landing/js/mode/spreadsheet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/spreadsheet/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/spreadsheet/spreadsheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/spreadsheet/spreadsheet.js -------------------------------------------------------------------------------- /demo/landing/js/mode/sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/sql/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/sql/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/sql/sql.js -------------------------------------------------------------------------------- /demo/landing/js/mode/stex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/stex/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/stex/stex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/stex/stex.js -------------------------------------------------------------------------------- /demo/landing/js/mode/stex/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/stex/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/stylus/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/stylus/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/stylus/stylus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/stylus/stylus.js -------------------------------------------------------------------------------- /demo/landing/js/mode/swift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/swift/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/swift/swift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/swift/swift.js -------------------------------------------------------------------------------- /demo/landing/js/mode/tcl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/tcl/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/tcl/tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/tcl/tcl.js -------------------------------------------------------------------------------- /demo/landing/js/mode/textile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/textile/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/textile/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/textile/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/textile/textile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/textile/textile.js -------------------------------------------------------------------------------- /demo/landing/js/mode/tiddlywiki/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/tiddlywiki/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/tiddlywiki/tiddlywiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/tiddlywiki/tiddlywiki.css -------------------------------------------------------------------------------- /demo/landing/js/mode/tiddlywiki/tiddlywiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/tiddlywiki/tiddlywiki.js -------------------------------------------------------------------------------- /demo/landing/js/mode/tiki/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/tiki/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/tiki/tiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/tiki/tiki.css -------------------------------------------------------------------------------- /demo/landing/js/mode/tiki/tiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/tiki/tiki.js -------------------------------------------------------------------------------- /demo/landing/js/mode/toml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/toml/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/toml/toml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/toml/toml.js -------------------------------------------------------------------------------- /demo/landing/js/mode/tornado/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/tornado/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/tornado/tornado.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/tornado/tornado.js -------------------------------------------------------------------------------- /demo/landing/js/mode/troff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/troff/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/troff/troff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/troff/troff.js -------------------------------------------------------------------------------- /demo/landing/js/mode/ttcn-cfg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ttcn-cfg/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/ttcn-cfg/ttcn-cfg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ttcn-cfg/ttcn-cfg.js -------------------------------------------------------------------------------- /demo/landing/js/mode/ttcn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ttcn/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/ttcn/ttcn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/ttcn/ttcn.js -------------------------------------------------------------------------------- /demo/landing/js/mode/turtle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/turtle/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/turtle/turtle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/turtle/turtle.js -------------------------------------------------------------------------------- /demo/landing/js/mode/twig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/twig/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/twig/twig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/twig/twig.js -------------------------------------------------------------------------------- /demo/landing/js/mode/vb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/vb/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/vb/vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/vb/vb.js -------------------------------------------------------------------------------- /demo/landing/js/mode/vbscript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/vbscript/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/vbscript/vbscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/vbscript/vbscript.js -------------------------------------------------------------------------------- /demo/landing/js/mode/velocity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/velocity/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/velocity/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/velocity/velocity.js -------------------------------------------------------------------------------- /demo/landing/js/mode/verilog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/verilog/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/verilog/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/verilog/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/verilog/verilog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/verilog/verilog.js -------------------------------------------------------------------------------- /demo/landing/js/mode/vhdl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/vhdl/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/vhdl/vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/vhdl/vhdl.js -------------------------------------------------------------------------------- /demo/landing/js/mode/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/vue/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/vue/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/vue/vue.js -------------------------------------------------------------------------------- /demo/landing/js/mode/webidl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/webidl/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/webidl/webidl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/webidl/webidl.js -------------------------------------------------------------------------------- /demo/landing/js/mode/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/xml/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/xml/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/xml/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/xml/xml.js -------------------------------------------------------------------------------- /demo/landing/js/mode/xquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/xquery/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/xquery/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/xquery/test.js -------------------------------------------------------------------------------- /demo/landing/js/mode/xquery/xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/xquery/xquery.js -------------------------------------------------------------------------------- /demo/landing/js/mode/yacas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/yacas/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/yacas/yacas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/yacas/yacas.js -------------------------------------------------------------------------------- /demo/landing/js/mode/yaml-frontmatter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/yaml-frontmatter/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/yaml-frontmatter/yaml-frontmatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/yaml-frontmatter/yaml-frontmatter.js -------------------------------------------------------------------------------- /demo/landing/js/mode/yaml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/yaml/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/yaml/yaml.js -------------------------------------------------------------------------------- /demo/landing/js/mode/z80/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/z80/index.html -------------------------------------------------------------------------------- /demo/landing/js/mode/z80/z80.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/js/mode/z80/z80.js -------------------------------------------------------------------------------- /demo/landing/scss/base/_base-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/base/_base-styles.scss -------------------------------------------------------------------------------- /demo/landing/scss/base/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/base/_functions.scss -------------------------------------------------------------------------------- /demo/landing/scss/base/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/base/_normalize.scss -------------------------------------------------------------------------------- /demo/landing/scss/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/base/_typography.scss -------------------------------------------------------------------------------- /demo/landing/scss/base/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/base/_utils.scss -------------------------------------------------------------------------------- /demo/landing/scss/base/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/base/_variables.scss -------------------------------------------------------------------------------- /demo/landing/scss/custom/codemirror.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/custom/codemirror.scss -------------------------------------------------------------------------------- /demo/landing/scss/custom/landing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/custom/landing.scss -------------------------------------------------------------------------------- /demo/landing/scss/modules/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/modules/_buttons.scss -------------------------------------------------------------------------------- /demo/landing/scss/modules/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/modules/_code.scss -------------------------------------------------------------------------------- /demo/landing/scss/modules/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/modules/_forms.scss -------------------------------------------------------------------------------- /demo/landing/scss/modules/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/modules/_grid.scss -------------------------------------------------------------------------------- /demo/landing/scss/modules/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/modules/_lists.scss -------------------------------------------------------------------------------- /demo/landing/scss/modules/_media-queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/modules/_media-queries.scss -------------------------------------------------------------------------------- /demo/landing/scss/modules/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/modules/_spacing.scss -------------------------------------------------------------------------------- /demo/landing/scss/modules/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/modules/_tables.scss -------------------------------------------------------------------------------- /demo/landing/scss/skeleton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/landing/scss/skeleton.scss -------------------------------------------------------------------------------- /demo/pan/images/misty_mountain.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/pan/images/misty_mountain.jpeg -------------------------------------------------------------------------------- /demo/pan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/pan/index.html -------------------------------------------------------------------------------- /demo/presentation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/CHANGELOG.md -------------------------------------------------------------------------------- /demo/presentation/DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/DOCUMENTATION.md -------------------------------------------------------------------------------- /demo/presentation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/LICENSE -------------------------------------------------------------------------------- /demo/presentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/README.md -------------------------------------------------------------------------------- /demo/presentation/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/apple-touch-icon.png -------------------------------------------------------------------------------- /demo/presentation/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/bower.json -------------------------------------------------------------------------------- /demo/presentation/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/circle.yml -------------------------------------------------------------------------------- /demo/presentation/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/css/codemirror.css -------------------------------------------------------------------------------- /demo/presentation/css/impress-demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/css/impress-demo.css -------------------------------------------------------------------------------- /demo/presentation/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/favicon.png -------------------------------------------------------------------------------- /demo/presentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/index.html -------------------------------------------------------------------------------- /demo/presentation/js/codemirror.js: -------------------------------------------------------------------------------- 1 | ../../landing/js/codemirror.js -------------------------------------------------------------------------------- /demo/presentation/js/humaninput-latest.js: -------------------------------------------------------------------------------- 1 | ../../../humaninput-latest.js -------------------------------------------------------------------------------- /demo/presentation/js/humaninput-latest.min.js: -------------------------------------------------------------------------------- 1 | ../../../humaninput-latest.min.js -------------------------------------------------------------------------------- /demo/presentation/js/impress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/js/impress.js -------------------------------------------------------------------------------- /demo/presentation/js/mode: -------------------------------------------------------------------------------- 1 | ../../landing/js/mode -------------------------------------------------------------------------------- /demo/presentation/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/karma.conf.js -------------------------------------------------------------------------------- /demo/presentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/package.json -------------------------------------------------------------------------------- /demo/presentation/test/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/test/bootstrap.js -------------------------------------------------------------------------------- /demo/presentation/test/core_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/presentation/test/core_tests.js -------------------------------------------------------------------------------- /demo/typing_game/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2015,10,28,21,23,0 3 | Version=3 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /demo/typing_game/blueBackground.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/blueBackground.gif -------------------------------------------------------------------------------- /demo/typing_game/crate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/crate.gif -------------------------------------------------------------------------------- /demo/typing_game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/index.html -------------------------------------------------------------------------------- /demo/typing_game/js/CSS2DRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/js/CSS2DRenderer.js -------------------------------------------------------------------------------- /demo/typing_game/js/CSS3DRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/js/CSS3DRenderer.js -------------------------------------------------------------------------------- /demo/typing_game/js/CanvasRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/js/CanvasRenderer.js -------------------------------------------------------------------------------- /demo/typing_game/js/Projector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/js/Projector.js -------------------------------------------------------------------------------- /demo/typing_game/js/TrackballControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/js/TrackballControls.js -------------------------------------------------------------------------------- /demo/typing_game/js/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/js/Tween.js -------------------------------------------------------------------------------- /demo/typing_game/js/cannon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/js/cannon.js -------------------------------------------------------------------------------- /demo/typing_game/js/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/js/three.min.js -------------------------------------------------------------------------------- /demo/typing_game/js/threex.geometricglowmesh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/js/threex.geometricglowmesh.js -------------------------------------------------------------------------------- /demo/typing_game/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/demo/typing_game/spark.png -------------------------------------------------------------------------------- /dist/humaninput-1.1.15-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/dist/humaninput-1.1.15-full.js -------------------------------------------------------------------------------- /dist/humaninput-1.1.15-full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/dist/humaninput-1.1.15-full.min.js -------------------------------------------------------------------------------- /dist/humaninput-1.1.15-full.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/dist/humaninput-1.1.15-full.min.js.gz -------------------------------------------------------------------------------- /dist/humaninput-1.1.15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/dist/humaninput-1.1.15.js -------------------------------------------------------------------------------- /dist/humaninput-1.1.15.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/dist/humaninput-1.1.15.min.js -------------------------------------------------------------------------------- /dist/humaninput-1.1.15.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/dist/humaninput-1.1.15.min.js.gz -------------------------------------------------------------------------------- /dist/humaninput-full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/dist/humaninput-full.min.js -------------------------------------------------------------------------------- /humaninput-latest.js: -------------------------------------------------------------------------------- 1 | dist/humaninput-1.1.15-full.js -------------------------------------------------------------------------------- /humaninput-latest.min.js: -------------------------------------------------------------------------------- 1 | dist/humaninput-1.1.15-full.min.js -------------------------------------------------------------------------------- /lib/clapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/clapper.js -------------------------------------------------------------------------------- /lib/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/clipboard.js -------------------------------------------------------------------------------- /lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/constants.js -------------------------------------------------------------------------------- /lib/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/events.js -------------------------------------------------------------------------------- /lib/example_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/example_plugin.js -------------------------------------------------------------------------------- /lib/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/feedback.js -------------------------------------------------------------------------------- /lib/gamepad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/gamepad.js -------------------------------------------------------------------------------- /lib/humaninput-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/humaninput-full.js -------------------------------------------------------------------------------- /lib/humaninput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/humaninput.js -------------------------------------------------------------------------------- /lib/idle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/idle.js -------------------------------------------------------------------------------- /lib/keymaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/keymaps.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/pointer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/pointer.js -------------------------------------------------------------------------------- /lib/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/polyfills.js -------------------------------------------------------------------------------- /lib/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/scroll.js -------------------------------------------------------------------------------- /lib/speechrec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/speechrec.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/package.json -------------------------------------------------------------------------------- /src/clapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/clapper.js -------------------------------------------------------------------------------- /src/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/clipboard.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/events.js -------------------------------------------------------------------------------- /src/example_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/example_plugin.js -------------------------------------------------------------------------------- /src/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/feedback.js -------------------------------------------------------------------------------- /src/gamepad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/gamepad.js -------------------------------------------------------------------------------- /src/humaninput-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/humaninput-full.js -------------------------------------------------------------------------------- /src/humaninput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/humaninput.js -------------------------------------------------------------------------------- /src/idle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/idle.js -------------------------------------------------------------------------------- /src/keymaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/keymaps.js -------------------------------------------------------------------------------- /src/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/logger.js -------------------------------------------------------------------------------- /src/pointer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/pointer.js -------------------------------------------------------------------------------- /src/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/polyfills.js -------------------------------------------------------------------------------- /src/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/scroll.js -------------------------------------------------------------------------------- /src/speechrec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/speechrec.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/src/utils.js -------------------------------------------------------------------------------- /tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/tests/README.rst -------------------------------------------------------------------------------- /tests/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/tests/events.js -------------------------------------------------------------------------------- /tests/hold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/tests/hold.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/tests/keyboard.js -------------------------------------------------------------------------------- /tests/pointer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/tests/pointer.js -------------------------------------------------------------------------------- /tests/sequences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/tests/sequences.js -------------------------------------------------------------------------------- /tests/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/tests/utils.js -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.1.15 2 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liftoff/HumanInput/HEAD/webpack.config.js --------------------------------------------------------------------------------