├── .gitignore ├── .npmrc ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── _config.localhost.yml ├── _config.yml ├── _disclosure ├── accordion │ └── index.html ├── carousel │ └── index.html ├── details │ └── index.html ├── expando │ └── index.html ├── index.html ├── infotip │ └── index.html ├── lightbox-dialog │ └── index.html ├── popover │ └── index.html ├── pulldown-list │ └── index.html ├── segmented-buttons │ └── index.html ├── tabs │ └── index.html └── tooltip │ └── index.html ├── _includes └── head.html ├── _input ├── button │ └── index.html ├── checkbox │ └── index.html ├── combobox │ └── index.html ├── datepicker │ ├── datepicker.css │ ├── index.html │ ├── jquery.datepickerbutton.js │ └── jquery.datepickerinput.js ├── index.html ├── input-dialog │ └── index.html ├── listbox-button │ └── index.html ├── listbox │ └── index.html ├── menu-button │ └── index.html ├── menu │ └── index.html ├── radio │ └── index.html ├── select │ └── index.html ├── star-rating │ ├── 1star.png │ ├── 3star.png │ └── index.html └── switch │ └── index.html ├── _js ├── accordion-legacy.js ├── accordion.js ├── aria-button.js ├── carousel.js ├── character-meter.js ├── details.js ├── expando.js ├── hijax-button.js ├── main.js ├── pagination.js ├── password-meter.js ├── pulldown.js ├── star-rating.js ├── tile.js └── tooltip.js ├── _layouts ├── master.html └── page.html ├── _messaging ├── alert-dialog │ └── index.html ├── confirm-dialog │ └── index.html ├── form-validation │ ├── index.html │ └── post.html ├── index.html ├── inline-notice │ ├── error.html │ └── index.html ├── input-meter │ └── index.html ├── input-validation │ └── index.html ├── page-notice │ └── index.html ├── time │ └── index.html └── toast-dialog │ └── index.html ├── _navigation ├── breadcrumbs │ └── index.html ├── fake-menu-button │ └── index.html ├── fake-tabs │ └── index.html ├── index.html ├── link │ └── index.html ├── pagination │ ├── 2.html │ ├── 3.html │ └── index.html ├── skip-navigation │ └── index.html └── tile │ └── index.html ├── _other ├── date-formats │ └── index.html ├── focus-trap │ └── index.html └── table │ └── index.html ├── _sass ├── _accordion.scss ├── _base.scss ├── _carousel.scss ├── _details.scss ├── _fake-tabs.scss ├── _infotip.scss ├── _popover.scss ├── _star-rating.scss ├── _tabs.scss ├── _tile.scss ├── _tooltip.scss └── _util.scss ├── babel.config.json ├── css ├── fonts │ ├── vq-icon-font.eot │ ├── vq-icon-font.svg │ ├── vq-icon-font.ttf │ └── vq-icon-font.woff └── main.scss ├── eslint.config.mjs ├── images ├── c64.jpg ├── chequeredflag.jpg ├── dizzy.jpg ├── doubledragon.jpg ├── ebay.png ├── fedex.png ├── gregorsamsa.jpg ├── horace.jpg ├── lumia635.jpg ├── lunarjetman.jpg ├── nes.jpg ├── skin_sprite3.png ├── skooldaze.jpg ├── sms.jpg ├── spyhunter.jpg ├── ups.png ├── usps.png ├── yiearkungfu.jpg └── zx48.jpg ├── index.html ├── package.json ├── static ├── browser.js ├── browser.js.map ├── flags.svg ├── icons.svg ├── skin.css └── skin.css.map └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/.npmrc -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/README.md -------------------------------------------------------------------------------- /_config.localhost.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_config.localhost.yml -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_config.yml -------------------------------------------------------------------------------- /_disclosure/accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_disclosure/accordion/index.html -------------------------------------------------------------------------------- /_disclosure/carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_disclosure/carousel/index.html -------------------------------------------------------------------------------- /_disclosure/details/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_disclosure/details/index.html -------------------------------------------------------------------------------- /_disclosure/expando/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_disclosure/expando/index.html -------------------------------------------------------------------------------- /_disclosure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_disclosure/index.html -------------------------------------------------------------------------------- /_disclosure/infotip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_disclosure/infotip/index.html -------------------------------------------------------------------------------- /_disclosure/lightbox-dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_disclosure/lightbox-dialog/index.html -------------------------------------------------------------------------------- /_disclosure/popover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_disclosure/popover/index.html -------------------------------------------------------------------------------- /_disclosure/pulldown-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_disclosure/pulldown-list/index.html -------------------------------------------------------------------------------- /_disclosure/segmented-buttons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_disclosure/segmented-buttons/index.html -------------------------------------------------------------------------------- /_disclosure/tabs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_disclosure/tabs/index.html -------------------------------------------------------------------------------- /_disclosure/tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_disclosure/tooltip/index.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_input/button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/button/index.html -------------------------------------------------------------------------------- /_input/checkbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/checkbox/index.html -------------------------------------------------------------------------------- /_input/combobox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/combobox/index.html -------------------------------------------------------------------------------- /_input/datepicker/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/datepicker/datepicker.css -------------------------------------------------------------------------------- /_input/datepicker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/datepicker/index.html -------------------------------------------------------------------------------- /_input/datepicker/jquery.datepickerbutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/datepicker/jquery.datepickerbutton.js -------------------------------------------------------------------------------- /_input/datepicker/jquery.datepickerinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/datepicker/jquery.datepickerinput.js -------------------------------------------------------------------------------- /_input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/index.html -------------------------------------------------------------------------------- /_input/input-dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/input-dialog/index.html -------------------------------------------------------------------------------- /_input/listbox-button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/listbox-button/index.html -------------------------------------------------------------------------------- /_input/listbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/listbox/index.html -------------------------------------------------------------------------------- /_input/menu-button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/menu-button/index.html -------------------------------------------------------------------------------- /_input/menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/menu/index.html -------------------------------------------------------------------------------- /_input/radio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/radio/index.html -------------------------------------------------------------------------------- /_input/select/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/select/index.html -------------------------------------------------------------------------------- /_input/star-rating/1star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/star-rating/1star.png -------------------------------------------------------------------------------- /_input/star-rating/3star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/star-rating/3star.png -------------------------------------------------------------------------------- /_input/star-rating/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/star-rating/index.html -------------------------------------------------------------------------------- /_input/switch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_input/switch/index.html -------------------------------------------------------------------------------- /_js/accordion-legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/accordion-legacy.js -------------------------------------------------------------------------------- /_js/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/accordion.js -------------------------------------------------------------------------------- /_js/aria-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/aria-button.js -------------------------------------------------------------------------------- /_js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/carousel.js -------------------------------------------------------------------------------- /_js/character-meter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/character-meter.js -------------------------------------------------------------------------------- /_js/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/details.js -------------------------------------------------------------------------------- /_js/expando.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/expando.js -------------------------------------------------------------------------------- /_js/hijax-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/hijax-button.js -------------------------------------------------------------------------------- /_js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/main.js -------------------------------------------------------------------------------- /_js/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/pagination.js -------------------------------------------------------------------------------- /_js/password-meter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/password-meter.js -------------------------------------------------------------------------------- /_js/pulldown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/pulldown.js -------------------------------------------------------------------------------- /_js/star-rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/star-rating.js -------------------------------------------------------------------------------- /_js/tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/tile.js -------------------------------------------------------------------------------- /_js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_js/tooltip.js -------------------------------------------------------------------------------- /_layouts/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_layouts/master.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: master 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /_messaging/alert-dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_messaging/alert-dialog/index.html -------------------------------------------------------------------------------- /_messaging/confirm-dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_messaging/confirm-dialog/index.html -------------------------------------------------------------------------------- /_messaging/form-validation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_messaging/form-validation/index.html -------------------------------------------------------------------------------- /_messaging/form-validation/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_messaging/form-validation/post.html -------------------------------------------------------------------------------- /_messaging/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_messaging/index.html -------------------------------------------------------------------------------- /_messaging/inline-notice/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_messaging/inline-notice/error.html -------------------------------------------------------------------------------- /_messaging/inline-notice/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_messaging/inline-notice/index.html -------------------------------------------------------------------------------- /_messaging/input-meter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_messaging/input-meter/index.html -------------------------------------------------------------------------------- /_messaging/input-validation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_messaging/input-validation/index.html -------------------------------------------------------------------------------- /_messaging/page-notice/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_messaging/page-notice/index.html -------------------------------------------------------------------------------- /_messaging/time/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_messaging/time/index.html -------------------------------------------------------------------------------- /_messaging/toast-dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_messaging/toast-dialog/index.html -------------------------------------------------------------------------------- /_navigation/breadcrumbs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_navigation/breadcrumbs/index.html -------------------------------------------------------------------------------- /_navigation/fake-menu-button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_navigation/fake-menu-button/index.html -------------------------------------------------------------------------------- /_navigation/fake-tabs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_navigation/fake-tabs/index.html -------------------------------------------------------------------------------- /_navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_navigation/index.html -------------------------------------------------------------------------------- /_navigation/link/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_navigation/link/index.html -------------------------------------------------------------------------------- /_navigation/pagination/2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_navigation/pagination/2.html -------------------------------------------------------------------------------- /_navigation/pagination/3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_navigation/pagination/3.html -------------------------------------------------------------------------------- /_navigation/pagination/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_navigation/pagination/index.html -------------------------------------------------------------------------------- /_navigation/skip-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_navigation/skip-navigation/index.html -------------------------------------------------------------------------------- /_navigation/tile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_navigation/tile/index.html -------------------------------------------------------------------------------- /_other/date-formats/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_other/date-formats/index.html -------------------------------------------------------------------------------- /_other/focus-trap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_other/focus-trap/index.html -------------------------------------------------------------------------------- /_other/table/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_other/table/index.html -------------------------------------------------------------------------------- /_sass/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_sass/_accordion.scss -------------------------------------------------------------------------------- /_sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_sass/_base.scss -------------------------------------------------------------------------------- /_sass/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_sass/_carousel.scss -------------------------------------------------------------------------------- /_sass/_details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_sass/_details.scss -------------------------------------------------------------------------------- /_sass/_fake-tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_sass/_fake-tabs.scss -------------------------------------------------------------------------------- /_sass/_infotip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_sass/_infotip.scss -------------------------------------------------------------------------------- /_sass/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_sass/_popover.scss -------------------------------------------------------------------------------- /_sass/_star-rating.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_sass/_star-rating.scss -------------------------------------------------------------------------------- /_sass/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_sass/_tabs.scss -------------------------------------------------------------------------------- /_sass/_tile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_sass/_tile.scss -------------------------------------------------------------------------------- /_sass/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_sass/_tooltip.scss -------------------------------------------------------------------------------- /_sass/_util.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/_sass/_util.scss -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/babel.config.json -------------------------------------------------------------------------------- /css/fonts/vq-icon-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/css/fonts/vq-icon-font.eot -------------------------------------------------------------------------------- /css/fonts/vq-icon-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/css/fonts/vq-icon-font.svg -------------------------------------------------------------------------------- /css/fonts/vq-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/css/fonts/vq-icon-font.ttf -------------------------------------------------------------------------------- /css/fonts/vq-icon-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/css/fonts/vq-icon-font.woff -------------------------------------------------------------------------------- /css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/css/main.scss -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /images/c64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/c64.jpg -------------------------------------------------------------------------------- /images/chequeredflag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/chequeredflag.jpg -------------------------------------------------------------------------------- /images/dizzy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/dizzy.jpg -------------------------------------------------------------------------------- /images/doubledragon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/doubledragon.jpg -------------------------------------------------------------------------------- /images/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/ebay.png -------------------------------------------------------------------------------- /images/fedex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/fedex.png -------------------------------------------------------------------------------- /images/gregorsamsa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/gregorsamsa.jpg -------------------------------------------------------------------------------- /images/horace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/horace.jpg -------------------------------------------------------------------------------- /images/lumia635.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/lumia635.jpg -------------------------------------------------------------------------------- /images/lunarjetman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/lunarjetman.jpg -------------------------------------------------------------------------------- /images/nes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/nes.jpg -------------------------------------------------------------------------------- /images/skin_sprite3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/skin_sprite3.png -------------------------------------------------------------------------------- /images/skooldaze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/skooldaze.jpg -------------------------------------------------------------------------------- /images/sms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/sms.jpg -------------------------------------------------------------------------------- /images/spyhunter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/spyhunter.jpg -------------------------------------------------------------------------------- /images/ups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/ups.png -------------------------------------------------------------------------------- /images/usps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/usps.png -------------------------------------------------------------------------------- /images/yiearkungfu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/yiearkungfu.jpg -------------------------------------------------------------------------------- /images/zx48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/images/zx48.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/package.json -------------------------------------------------------------------------------- /static/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/static/browser.js -------------------------------------------------------------------------------- /static/browser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/static/browser.js.map -------------------------------------------------------------------------------- /static/flags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/static/flags.svg -------------------------------------------------------------------------------- /static/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/static/icons.svg -------------------------------------------------------------------------------- /static/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/static/skin.css -------------------------------------------------------------------------------- /static/skin.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/static/skin.css.map -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/mindpatterns/HEAD/webpack.config.js --------------------------------------------------------------------------------