├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bower.json ├── contributing.md ├── demo ├── demo.css ├── demo.html ├── demo2.html ├── demo3.html ├── demo4.html ├── index.html ├── minmax.html └── testinclude.html ├── gulpfile.js ├── index.js ├── package.json ├── publish.js ├── src ├── ui-layout.css └── ui-layout.js └── test ├── helpers ├── browserTrigger.js ├── jquery_alias.js ├── jquery_remove.js └── spec_helper.js ├── karma-jqlite.conf.js ├── karma-jquery.conf.js ├── layout-scenar.spec.js ├── layout.spec.js ├── uiLayoutContainer.spec.js ├── uiLayoutCtrl.spec.js └── uiLayoutLoaded.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | dist 4 | out 5 | coverage 6 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/bower.json -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/contributing.md -------------------------------------------------------------------------------- /demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/demo/demo.css -------------------------------------------------------------------------------- /demo/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/demo/demo.html -------------------------------------------------------------------------------- /demo/demo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/demo/demo2.html -------------------------------------------------------------------------------- /demo/demo3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/demo/demo3.html -------------------------------------------------------------------------------- /demo/demo4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/demo/demo4.html -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/minmax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/demo/minmax.html -------------------------------------------------------------------------------- /demo/testinclude.html: -------------------------------------------------------------------------------- 1 |
2 | My included contents. 3 |
-------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/package.json -------------------------------------------------------------------------------- /publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/publish.js -------------------------------------------------------------------------------- /src/ui-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/src/ui-layout.css -------------------------------------------------------------------------------- /src/ui-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/src/ui-layout.js -------------------------------------------------------------------------------- /test/helpers/browserTrigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/test/helpers/browserTrigger.js -------------------------------------------------------------------------------- /test/helpers/jquery_alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/test/helpers/jquery_alias.js -------------------------------------------------------------------------------- /test/helpers/jquery_remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/test/helpers/jquery_remove.js -------------------------------------------------------------------------------- /test/helpers/spec_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/test/helpers/spec_helper.js -------------------------------------------------------------------------------- /test/karma-jqlite.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/test/karma-jqlite.conf.js -------------------------------------------------------------------------------- /test/karma-jquery.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/test/karma-jquery.conf.js -------------------------------------------------------------------------------- /test/layout-scenar.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/test/layout-scenar.spec.js -------------------------------------------------------------------------------- /test/layout.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/test/layout.spec.js -------------------------------------------------------------------------------- /test/uiLayoutContainer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/test/uiLayoutContainer.spec.js -------------------------------------------------------------------------------- /test/uiLayoutCtrl.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/test/uiLayoutCtrl.spec.js -------------------------------------------------------------------------------- /test/uiLayoutLoaded.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-layout/HEAD/test/uiLayoutLoaded.spec.js --------------------------------------------------------------------------------