├── README.md ├── css └── style.css ├── demo.gif ├── favicon.ico ├── index.html └── js ├── components ├── app-addperson.js ├── app-chosenpeople.js ├── app-chosenperson.js ├── app-console.js ├── app-messages.js ├── app-people.js ├── app-person.js └── app-rootelement.js ├── main.js └── pubsub ├── datastore.js └── pubsub.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/README.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/css/style.css -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/demo.gif -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/index.html -------------------------------------------------------------------------------- /js/components/app-addperson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/js/components/app-addperson.js -------------------------------------------------------------------------------- /js/components/app-chosenpeople.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/js/components/app-chosenpeople.js -------------------------------------------------------------------------------- /js/components/app-chosenperson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/js/components/app-chosenperson.js -------------------------------------------------------------------------------- /js/components/app-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/js/components/app-console.js -------------------------------------------------------------------------------- /js/components/app-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/js/components/app-messages.js -------------------------------------------------------------------------------- /js/components/app-people.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/js/components/app-people.js -------------------------------------------------------------------------------- /js/components/app-person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/js/components/app-person.js -------------------------------------------------------------------------------- /js/components/app-rootelement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/js/components/app-rootelement.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/js/main.js -------------------------------------------------------------------------------- /js/pubsub/datastore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/js/pubsub/datastore.js -------------------------------------------------------------------------------- /js/pubsub/pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petercz1/webcomponents_pubsub/HEAD/js/pubsub/pubsub.js --------------------------------------------------------------------------------