gitextract_qkioeboz/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── HISTORY.md ├── LICENSE.md ├── README.md ├── bower.json ├── buildr-uncompressed.coffee ├── buildr.coffee ├── component.json ├── demo/ │ ├── bcherry-orig.html │ ├── bcherry.html │ ├── chrome.html │ ├── index.html │ ├── native-auto.html │ ├── native.html │ ├── navigator.html │ ├── safari.html │ └── unicode.html ├── package.json ├── scripts/ │ ├── bundled/ │ │ ├── html4+html5/ │ │ │ ├── dojo.history.js │ │ │ ├── extjs.history.js │ │ │ ├── jquery.history.js │ │ │ ├── mootools.history.js │ │ │ ├── native.history.js │ │ │ ├── right.history.js │ │ │ └── zepto.history.js │ │ └── html5/ │ │ ├── dojo.history.js │ │ ├── extjs.history.js │ │ ├── jquery.history.js │ │ ├── mootools.history.js │ │ ├── native.history.js │ │ ├── right.history.js │ │ └── zepto.history.js │ ├── bundled-uncompressed/ │ │ ├── html4+html5/ │ │ │ ├── dojo.history.js │ │ │ ├── extjs.history.js │ │ │ ├── jquery.history.js │ │ │ ├── mootools.history.js │ │ │ ├── native.history.js │ │ │ ├── right.history.js │ │ │ └── zepto.history.js │ │ └── html5/ │ │ ├── dojo.history.js │ │ ├── extjs.history.js │ │ ├── jquery.history.js │ │ ├── mootools.history.js │ │ ├── native.history.js │ │ ├── right.history.js │ │ └── zepto.history.js │ ├── compressed/ │ │ ├── history.adapter.dojo.js │ │ ├── history.adapter.extjs.js │ │ ├── history.adapter.jquery.js │ │ ├── history.adapter.mootools.js │ │ ├── history.adapter.native.js │ │ ├── history.adapter.right.js │ │ ├── history.adapter.zepto.js │ │ ├── history.html4.js │ │ ├── history.js │ │ └── json2.js │ └── uncompressed/ │ ├── history.adapter.dojo.js │ ├── history.adapter.extjs.js │ ├── history.adapter.jquery.js │ ├── history.adapter.mootools.js │ ├── history.adapter.native.js │ ├── history.adapter.right.js │ ├── history.adapter.zepto.js │ ├── history.html4.js │ ├── history.js │ └── json2.js ├── tests/ │ ├── .htaccess │ ├── html4+html5.dojo.html │ ├── html4+html5.extjs.html │ ├── html4+html5.jquery.html │ ├── html4+html5.mootools.html │ ├── html4+html5.native.html │ ├── html4+html5.right.html │ ├── html4+html5.zepto.html │ ├── html5.dojo.html │ ├── html5.extjs.html │ ├── html5.jquery.html │ ├── html5.mootools.html │ ├── html5.native.html │ ├── html5.right.html │ ├── html5.zepto.html │ ├── image.php │ ├── index.html │ └── tests.js ├── tests.src/ │ ├── _header.php │ ├── all.php │ ├── each.php │ └── index.php └── vendor/ ├── dojo.js ├── extjs.js ├── jquery.js ├── mootools.js ├── qunit/ │ ├── .gitignore │ ├── AUTHORS.txt │ ├── History.md │ ├── README.md │ ├── grunt.js │ ├── package.json │ ├── qunit/ │ │ ├── .jshintrc │ │ ├── qunit.css │ │ └── qunit.js │ └── test/ │ ├── .jshintrc │ ├── async.html │ ├── async.js │ ├── deepEqual.js │ ├── headless.html │ ├── index.html │ ├── logs.html │ ├── logs.js │ ├── narwhal-test.js │ ├── node-test.js │ ├── same.js │ ├── swarminject.js │ └── test.js ├── right.js └── zepto.js