├── .travis.yml ├── BSD-LICENSE.txt ├── GPL-LICENSE.txt ├── README.markdown ├── Rakefile ├── bower.json ├── jquery.example.js ├── jquery.example.min.js ├── run-qunit.js └── test ├── index.html ├── jquery.example_test.js ├── metadata.js ├── qunit.css └── qunit.js /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/.travis.yml -------------------------------------------------------------------------------- /BSD-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/BSD-LICENSE.txt -------------------------------------------------------------------------------- /GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/GPL-LICENSE.txt -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/Rakefile -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/bower.json -------------------------------------------------------------------------------- /jquery.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/jquery.example.js -------------------------------------------------------------------------------- /jquery.example.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/jquery.example.min.js -------------------------------------------------------------------------------- /run-qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/run-qunit.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/test/index.html -------------------------------------------------------------------------------- /test/jquery.example_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/test/jquery.example_test.js -------------------------------------------------------------------------------- /test/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/test/metadata.js -------------------------------------------------------------------------------- /test/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/test/qunit.css -------------------------------------------------------------------------------- /test/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudge/jquery_example/HEAD/test/qunit.js --------------------------------------------------------------------------------