├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── error.html ├── helpers.js ├── index.js ├── package.json ├── pagelet.fragment └── test ├── common.js ├── fixtures ├── error.html ├── style.css ├── view.html └── view.jsx ├── helpers.test.js ├── mocha.opts └── pagelet.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpipe/pagelet/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpipe/pagelet/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpipe/pagelet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpipe/pagelet/HEAD/README.md -------------------------------------------------------------------------------- /error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpipe/pagelet/HEAD/error.html -------------------------------------------------------------------------------- /helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpipe/pagelet/HEAD/helpers.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpipe/pagelet/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpipe/pagelet/HEAD/package.json -------------------------------------------------------------------------------- /pagelet.fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpipe/pagelet/HEAD/pagelet.fragment -------------------------------------------------------------------------------- /test/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpipe/pagelet/HEAD/test/common.js -------------------------------------------------------------------------------- /test/fixtures/error.html: -------------------------------------------------------------------------------- 1 |
You failed!
-------------------------------------------------------------------------------- /test/fixtures/style.css: -------------------------------------------------------------------------------- 1 | * { color: red } 2 | -------------------------------------------------------------------------------- /test/fixtures/view.html: -------------------------------------------------------------------------------- 1 |