├── .bowerrc ├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CONTRIBUTING.md ├── Gruntfile.js ├── README.md ├── bower.json ├── dist ├── jquery.doctop.js └── jquery.doctop.min.js ├── doctop.jquery.json ├── package.json ├── src ├── .jshintrc ├── doctop.js └── test.html └── test ├── .jshintrc ├── doctop.html └── doctop_test.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /bower_components/ 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/bower.json -------------------------------------------------------------------------------- /dist/jquery.doctop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/dist/jquery.doctop.js -------------------------------------------------------------------------------- /dist/jquery.doctop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/dist/jquery.doctop.min.js -------------------------------------------------------------------------------- /doctop.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/doctop.jquery.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/package.json -------------------------------------------------------------------------------- /src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/src/.jshintrc -------------------------------------------------------------------------------- /src/doctop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/src/doctop.js -------------------------------------------------------------------------------- /src/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/src/test.html -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/doctop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/test/doctop.html -------------------------------------------------------------------------------- /test/doctop_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/times/doctop/HEAD/test/doctop_test.js --------------------------------------------------------------------------------