├── .gitignore ├── .npmignore ├── .travis.yml ├── Gruntfile.coffee ├── LICENSE.md ├── README.md ├── package.json ├── spec ├── spec-helper.coffee └── television-spec.coffee └── src ├── build-tag-functions.coffee ├── build-virtual-node.coffee ├── custom-element-prototype.coffee ├── refs-stack.coffee └── television.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.swp 3 | lib 4 | npm-debug.log 5 | .coffee 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/television/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/television/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/television/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/television/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/television/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/television/HEAD/package.json -------------------------------------------------------------------------------- /spec/spec-helper.coffee: -------------------------------------------------------------------------------- 1 | require 'coffee-cache' 2 | -------------------------------------------------------------------------------- /spec/television-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/television/HEAD/spec/television-spec.coffee -------------------------------------------------------------------------------- /src/build-tag-functions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/television/HEAD/src/build-tag-functions.coffee -------------------------------------------------------------------------------- /src/build-virtual-node.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/television/HEAD/src/build-virtual-node.coffee -------------------------------------------------------------------------------- /src/custom-element-prototype.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/television/HEAD/src/custom-element-prototype.coffee -------------------------------------------------------------------------------- /src/refs-stack.coffee: -------------------------------------------------------------------------------- 1 | module.exports = [] 2 | -------------------------------------------------------------------------------- /src/television.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/television/HEAD/src/television.coffee --------------------------------------------------------------------------------