├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── app-server.js ├── artifacts └── .dummy ├── bower.json ├── demo-server.js ├── gulpfile.js ├── misc └── alternate_key_layout.js ├── package.json ├── periscope-server.js ├── periscope.js ├── public ├── app.html ├── gv_images │ └── .dummy ├── images │ ├── controller_as.png │ ├── isolate_scope.png │ ├── key.png │ ├── ngrepeat.png │ ├── periscope_large.png │ ├── periscope_small.png │ └── service.png ├── index.html ├── scripts │ ├── app.js │ └── periscopeModule.js └── styles │ ├── app.css │ └── demos.css └── views ├── controller_as.html ├── dir_isolate.html ├── dir_multiple.html ├── dir_noscope.html ├── dir_scope.html ├── dir_trans_isolate.html ├── dir_trans_noscope.html ├── dir_trans_scope.html ├── nested_ctrls.html ├── nested_forms.html ├── ngif.html ├── nginclude.html ├── ngrepeat.html ├── ngswitch.html ├── ngview.html ├── scope_props.html ├── service.html ├── service_inject_dir.html └── simple_form.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/README.md -------------------------------------------------------------------------------- /app-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/app-server.js -------------------------------------------------------------------------------- /artifacts/.dummy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/bower.json -------------------------------------------------------------------------------- /demo-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/demo-server.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/gulpfile.js -------------------------------------------------------------------------------- /misc/alternate_key_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/misc/alternate_key_layout.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/package.json -------------------------------------------------------------------------------- /periscope-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/periscope-server.js -------------------------------------------------------------------------------- /periscope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/periscope.js -------------------------------------------------------------------------------- /public/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/app.html -------------------------------------------------------------------------------- /public/gv_images/.dummy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/images/controller_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/images/controller_as.png -------------------------------------------------------------------------------- /public/images/isolate_scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/images/isolate_scope.png -------------------------------------------------------------------------------- /public/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/images/key.png -------------------------------------------------------------------------------- /public/images/ngrepeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/images/ngrepeat.png -------------------------------------------------------------------------------- /public/images/periscope_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/images/periscope_large.png -------------------------------------------------------------------------------- /public/images/periscope_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/images/periscope_small.png -------------------------------------------------------------------------------- /public/images/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/images/service.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/index.html -------------------------------------------------------------------------------- /public/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/scripts/app.js -------------------------------------------------------------------------------- /public/scripts/periscopeModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/scripts/periscopeModule.js -------------------------------------------------------------------------------- /public/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/styles/app.css -------------------------------------------------------------------------------- /public/styles/demos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/public/styles/demos.css -------------------------------------------------------------------------------- /views/controller_as.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/controller_as.html -------------------------------------------------------------------------------- /views/dir_isolate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/dir_isolate.html -------------------------------------------------------------------------------- /views/dir_multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/dir_multiple.html -------------------------------------------------------------------------------- /views/dir_noscope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/dir_noscope.html -------------------------------------------------------------------------------- /views/dir_scope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/dir_scope.html -------------------------------------------------------------------------------- /views/dir_trans_isolate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/dir_trans_isolate.html -------------------------------------------------------------------------------- /views/dir_trans_noscope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/dir_trans_noscope.html -------------------------------------------------------------------------------- /views/dir_trans_scope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/dir_trans_scope.html -------------------------------------------------------------------------------- /views/nested_ctrls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/nested_ctrls.html -------------------------------------------------------------------------------- /views/nested_forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/nested_forms.html -------------------------------------------------------------------------------- /views/ngif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/ngif.html -------------------------------------------------------------------------------- /views/nginclude.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/nginclude.html -------------------------------------------------------------------------------- /views/ngrepeat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/ngrepeat.html -------------------------------------------------------------------------------- /views/ngswitch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/ngswitch.html -------------------------------------------------------------------------------- /views/ngview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/ngview.html -------------------------------------------------------------------------------- /views/scope_props.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/scope_props.html -------------------------------------------------------------------------------- /views/service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/service.html -------------------------------------------------------------------------------- /views/service_inject_dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/service_inject_dir.html -------------------------------------------------------------------------------- /views/simple_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrajcok/angularjs-periscope/HEAD/views/simple_form.html --------------------------------------------------------------------------------