├── .eslintrc ├── .gitignore ├── .testem.json ├── README.md ├── dist ├── jquery.component.js └── jquery.component.min.js ├── doc └── API.md ├── example ├── basic.html ├── binding.html ├── children.html └── events.html ├── package.json ├── src ├── index.js ├── jquery.bindData.js ├── jquery.component.js └── jquery.events.js └── test ├── browser └── index.html ├── jquery.bindData.js ├── jquery.component.js └── jquery.events.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/.gitignore -------------------------------------------------------------------------------- /.testem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/.testem.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/README.md -------------------------------------------------------------------------------- /dist/jquery.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/dist/jquery.component.js -------------------------------------------------------------------------------- /dist/jquery.component.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/dist/jquery.component.min.js -------------------------------------------------------------------------------- /doc/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/doc/API.md -------------------------------------------------------------------------------- /example/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/example/basic.html -------------------------------------------------------------------------------- /example/binding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/example/binding.html -------------------------------------------------------------------------------- /example/children.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/example/children.html -------------------------------------------------------------------------------- /example/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/example/events.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/src/index.js -------------------------------------------------------------------------------- /src/jquery.bindData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/src/jquery.bindData.js -------------------------------------------------------------------------------- /src/jquery.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/src/jquery.component.js -------------------------------------------------------------------------------- /src/jquery.events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/src/jquery.events.js -------------------------------------------------------------------------------- /test/browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/test/browser/index.html -------------------------------------------------------------------------------- /test/jquery.bindData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/test/jquery.bindData.js -------------------------------------------------------------------------------- /test/jquery.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/test/jquery.component.js -------------------------------------------------------------------------------- /test/jquery.events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivmonnier/jquery-component/HEAD/test/jquery.events.js --------------------------------------------------------------------------------