├── .bowerrc ├── .gitignore ├── Gruntfile.js ├── bower.json ├── child.js ├── frame.js ├── package.json ├── project.json ├── readme.rst ├── src ├── child.html ├── child2.html ├── index.html ├── index.js ├── makeEvent.js ├── responsive-child │ ├── _template.html │ ├── guest.js │ ├── responsive-child.js │ └── responsive-child.less ├── responsive-frame │ ├── host.js │ ├── responsive-frame.js │ └── responsive-frame.less └── trapString.js └── tasks ├── build.js ├── bundle.js ├── connect.js ├── less.js ├── lib ├── browserify-less.js └── browserify-template.js ├── publish.js └── watch.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/lib" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | temp/ 4 | src/lib/ 5 | auth.json -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/bower.json -------------------------------------------------------------------------------- /child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/child.js -------------------------------------------------------------------------------- /frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/frame.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/package.json -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/project.json -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/readme.rst -------------------------------------------------------------------------------- /src/child.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/src/child.html -------------------------------------------------------------------------------- /src/child2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/src/child2.html -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/src/index.js -------------------------------------------------------------------------------- /src/makeEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/src/makeEvent.js -------------------------------------------------------------------------------- /src/responsive-child/_template.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/responsive-child/guest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/src/responsive-child/guest.js -------------------------------------------------------------------------------- /src/responsive-child/responsive-child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/src/responsive-child/responsive-child.js -------------------------------------------------------------------------------- /src/responsive-child/responsive-child.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/src/responsive-child/responsive-child.less -------------------------------------------------------------------------------- /src/responsive-frame/host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/src/responsive-frame/host.js -------------------------------------------------------------------------------- /src/responsive-frame/responsive-frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/src/responsive-frame/responsive-frame.js -------------------------------------------------------------------------------- /src/responsive-frame/responsive-frame.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/src/responsive-frame/responsive-frame.less -------------------------------------------------------------------------------- /src/trapString.js: -------------------------------------------------------------------------------- 1 | module.exports = "while (true);" -------------------------------------------------------------------------------- /tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/tasks/build.js -------------------------------------------------------------------------------- /tasks/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/tasks/bundle.js -------------------------------------------------------------------------------- /tasks/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/tasks/connect.js -------------------------------------------------------------------------------- /tasks/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/tasks/less.js -------------------------------------------------------------------------------- /tasks/lib/browserify-less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/tasks/lib/browserify-less.js -------------------------------------------------------------------------------- /tasks/lib/browserify-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/tasks/lib/browserify-template.js -------------------------------------------------------------------------------- /tasks/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/tasks/publish.js -------------------------------------------------------------------------------- /tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/responsive-frame/HEAD/tasks/watch.js --------------------------------------------------------------------------------