├── .gitignore ├── README.rst ├── initial-demo ├── README.rst ├── backup │ └── backup.html ├── index.html ├── index2.html └── wherestheparty.js ├── notes.txt ├── proof ├── index.html └── shirt.html ├── website ├── contact.html ├── donate.html ├── index.html └── static │ ├── base.css │ ├── menu │ ├── images │ │ ├── background.jpg │ │ ├── hover.jpg │ │ ├── left.jpg │ │ └── right.jpg │ └── menu_style.css │ ├── mirrorparty_crowd.png │ ├── mirrorparty_logo.png │ ├── mirrorparty_logo_square.png │ └── normalize.css ├── wtp.coffee └── wtp ├── cors.html ├── easyXDM.debug.js ├── easyXDM.js ├── json2.js ├── name.html ├── wtp.css └── wtp.js /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/README.rst -------------------------------------------------------------------------------- /initial-demo/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/initial-demo/README.rst -------------------------------------------------------------------------------- /initial-demo/backup/backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/initial-demo/backup/backup.html -------------------------------------------------------------------------------- /initial-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/initial-demo/index.html -------------------------------------------------------------------------------- /initial-demo/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/initial-demo/index2.html -------------------------------------------------------------------------------- /initial-demo/wherestheparty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/initial-demo/wherestheparty.js -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/notes.txt -------------------------------------------------------------------------------- /proof/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/proof/index.html -------------------------------------------------------------------------------- /proof/shirt.html: -------------------------------------------------------------------------------- 1 | I wear it 2 | -------------------------------------------------------------------------------- /website/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/contact.html -------------------------------------------------------------------------------- /website/donate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/donate.html -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/index.html -------------------------------------------------------------------------------- /website/static/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/static/base.css -------------------------------------------------------------------------------- /website/static/menu/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/static/menu/images/background.jpg -------------------------------------------------------------------------------- /website/static/menu/images/hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/static/menu/images/hover.jpg -------------------------------------------------------------------------------- /website/static/menu/images/left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/static/menu/images/left.jpg -------------------------------------------------------------------------------- /website/static/menu/images/right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/static/menu/images/right.jpg -------------------------------------------------------------------------------- /website/static/menu/menu_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/static/menu/menu_style.css -------------------------------------------------------------------------------- /website/static/mirrorparty_crowd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/static/mirrorparty_crowd.png -------------------------------------------------------------------------------- /website/static/mirrorparty_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/static/mirrorparty_logo.png -------------------------------------------------------------------------------- /website/static/mirrorparty_logo_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/static/mirrorparty_logo_square.png -------------------------------------------------------------------------------- /website/static/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/website/static/normalize.css -------------------------------------------------------------------------------- /wtp.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/wtp.coffee -------------------------------------------------------------------------------- /wtp/cors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/wtp/cors.html -------------------------------------------------------------------------------- /wtp/easyXDM.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/wtp/easyXDM.debug.js -------------------------------------------------------------------------------- /wtp/easyXDM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/wtp/easyXDM.js -------------------------------------------------------------------------------- /wtp/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/wtp/json2.js -------------------------------------------------------------------------------- /wtp/name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/wtp/name.html -------------------------------------------------------------------------------- /wtp/wtp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/wtp/wtp.css -------------------------------------------------------------------------------- /wtp/wtp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearpants/wherestheparty/HEAD/wtp/wtp.js --------------------------------------------------------------------------------