├── .gitignore ├── LICENSE ├── README.md ├── css ├── bootstrap.css └── bootstrap.css.map ├── dist ├── FriendsService.js ├── byevents │ ├── GadgetInput.js │ ├── GadgetList.js │ ├── gadget_input.html │ └── gadget_list.html ├── byinjection │ ├── PetInput.js │ ├── PetList.js │ ├── pet_input.html │ └── pet_list.html ├── byservice │ ├── FriendInput.js │ ├── FriendList.js │ ├── friend_input.html │ └── friend_list.html ├── hello.html ├── hello.js ├── index.html └── lib │ ├── Reflect.js │ ├── Reflect.js.map │ ├── angular2.js │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── es6-module-loader-sans-promises.src.js │ ├── extension-register.js │ ├── long-stack-trace-zone.js │ ├── traceur-runtime.js │ └── zone.js ├── gulpfile.js ├── package.json └── src ├── FriendsService.js ├── byevents ├── GadgetInput.js ├── GadgetList.js ├── gadget_input.html └── gadget_list.html ├── byinjection ├── PetInput.js ├── PetList.js ├── pet_input.html └── pet_list.html ├── byservice ├── FriendInput.js ├── FriendList.js ├── friend_input.html └── friend_list.html ├── hello.html ├── hello.js └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | node_modules 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/README.md -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/css/bootstrap.css.map -------------------------------------------------------------------------------- /dist/FriendsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/FriendsService.js -------------------------------------------------------------------------------- /dist/byevents/GadgetInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/byevents/GadgetInput.js -------------------------------------------------------------------------------- /dist/byevents/GadgetList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/byevents/GadgetList.js -------------------------------------------------------------------------------- /dist/byevents/gadget_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/byevents/gadget_input.html -------------------------------------------------------------------------------- /dist/byevents/gadget_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/byevents/gadget_list.html -------------------------------------------------------------------------------- /dist/byinjection/PetInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/byinjection/PetInput.js -------------------------------------------------------------------------------- /dist/byinjection/PetList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/byinjection/PetList.js -------------------------------------------------------------------------------- /dist/byinjection/pet_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/byinjection/pet_input.html -------------------------------------------------------------------------------- /dist/byinjection/pet_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/byinjection/pet_list.html -------------------------------------------------------------------------------- /dist/byservice/FriendInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/byservice/FriendInput.js -------------------------------------------------------------------------------- /dist/byservice/FriendList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/byservice/FriendList.js -------------------------------------------------------------------------------- /dist/byservice/friend_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/byservice/friend_input.html -------------------------------------------------------------------------------- /dist/byservice/friend_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/byservice/friend_list.html -------------------------------------------------------------------------------- /dist/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/hello.html -------------------------------------------------------------------------------- /dist/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/hello.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/lib/Reflect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/lib/Reflect.js -------------------------------------------------------------------------------- /dist/lib/Reflect.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/lib/Reflect.js.map -------------------------------------------------------------------------------- /dist/lib/angular2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/lib/angular2.js -------------------------------------------------------------------------------- /dist/lib/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/lib/bootstrap.css -------------------------------------------------------------------------------- /dist/lib/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/lib/bootstrap.css.map -------------------------------------------------------------------------------- /dist/lib/es6-module-loader-sans-promises.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/lib/es6-module-loader-sans-promises.src.js -------------------------------------------------------------------------------- /dist/lib/extension-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/lib/extension-register.js -------------------------------------------------------------------------------- /dist/lib/long-stack-trace-zone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/lib/long-stack-trace-zone.js -------------------------------------------------------------------------------- /dist/lib/traceur-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/lib/traceur-runtime.js -------------------------------------------------------------------------------- /dist/lib/zone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/dist/lib/zone.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/package.json -------------------------------------------------------------------------------- /src/FriendsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/FriendsService.js -------------------------------------------------------------------------------- /src/byevents/GadgetInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/byevents/GadgetInput.js -------------------------------------------------------------------------------- /src/byevents/GadgetList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/byevents/GadgetList.js -------------------------------------------------------------------------------- /src/byevents/gadget_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/byevents/gadget_input.html -------------------------------------------------------------------------------- /src/byevents/gadget_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/byevents/gadget_list.html -------------------------------------------------------------------------------- /src/byinjection/PetInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/byinjection/PetInput.js -------------------------------------------------------------------------------- /src/byinjection/PetList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/byinjection/PetList.js -------------------------------------------------------------------------------- /src/byinjection/pet_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/byinjection/pet_input.html -------------------------------------------------------------------------------- /src/byinjection/pet_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/byinjection/pet_list.html -------------------------------------------------------------------------------- /src/byservice/FriendInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/byservice/FriendInput.js -------------------------------------------------------------------------------- /src/byservice/FriendList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/byservice/FriendList.js -------------------------------------------------------------------------------- /src/byservice/friend_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/byservice/friend_input.html -------------------------------------------------------------------------------- /src/byservice/friend_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/byservice/friend_list.html -------------------------------------------------------------------------------- /src/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/hello.html -------------------------------------------------------------------------------- /src/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/hello.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SekibOmazic/angular2-playground/HEAD/src/index.html --------------------------------------------------------------------------------