├── .gitignore ├── .travis.yml ├── README.markdown ├── gruntfile.js ├── img └── background.png ├── index.html ├── jquery.h5validate.js ├── package.json ├── scripts └── test.sh ├── style01.css └── test ├── index.html ├── qunit.css ├── qunit.js └── test.h5validate.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | buildconfig.env 3 | sauce_connect.log 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/h5Validate/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/h5Validate/HEAD/README.markdown -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/h5Validate/HEAD/gruntfile.js -------------------------------------------------------------------------------- /img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/h5Validate/HEAD/img/background.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/h5Validate/HEAD/index.html -------------------------------------------------------------------------------- /jquery.h5validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/h5Validate/HEAD/jquery.h5validate.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/h5Validate/HEAD/package.json -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | source buildconfig.env 4 | grunt test 5 | -------------------------------------------------------------------------------- /style01.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/h5Validate/HEAD/style01.css -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/h5Validate/HEAD/test/index.html -------------------------------------------------------------------------------- /test/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/h5Validate/HEAD/test/qunit.css -------------------------------------------------------------------------------- /test/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/h5Validate/HEAD/test/qunit.js -------------------------------------------------------------------------------- /test/test.h5validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/h5Validate/HEAD/test/test.h5validate.js --------------------------------------------------------------------------------