├── README.md ├── bower.json ├── bower_components ├── bootstrap │ ├── .bower.json │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── grunt │ │ ├── bs-glyphicons-data-generator.js │ │ ├── bs-lessdoc-parser.js │ │ ├── bs-raw-files-generator.js │ │ └── shrinkwrap.js │ ├── js │ │ ├── affix.js │ │ ├── alert.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── tooltip.js │ │ └── transition.js │ ├── less │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── package.json │ └── test-infra │ │ ├── README.md │ │ ├── npm-shrinkwrap.canonical.json │ │ ├── requirements.txt │ │ ├── s3_cache.py │ │ ├── sauce_browsers.yml │ │ └── uncached-npm-install.sh └── jquery │ ├── .bower.json │ ├── MIT-LICENSE.txt │ ├── bower.json │ ├── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map │ └── src │ ├── ajax.js │ ├── ajax │ ├── jsonp.js │ ├── load.js │ ├── parseJSON.js │ ├── parseXML.js │ ├── script.js │ ├── var │ │ ├── nonce.js │ │ └── rquery.js │ └── xhr.js │ ├── attributes.js │ ├── attributes │ ├── attr.js │ ├── classes.js │ ├── prop.js │ ├── support.js │ └── val.js │ ├── callbacks.js │ ├── core.js │ ├── core │ ├── access.js │ ├── init.js │ ├── parseHTML.js │ ├── ready.js │ └── var │ │ └── rsingleTag.js │ ├── css.js │ ├── css │ ├── addGetHookIf.js │ ├── curCSS.js │ ├── defaultDisplay.js │ ├── hiddenVisibleSelectors.js │ ├── support.js │ ├── swap.js │ └── var │ │ ├── cssExpand.js │ │ ├── getStyles.js │ │ ├── isHidden.js │ │ ├── rmargin.js │ │ └── rnumnonpx.js │ ├── data.js │ ├── data │ ├── Data.js │ ├── accepts.js │ └── var │ │ ├── data_priv.js │ │ └── data_user.js │ ├── deferred.js │ ├── deprecated.js │ ├── dimensions.js │ ├── effects.js │ ├── effects │ ├── Tween.js │ └── animatedSelector.js │ ├── event.js │ ├── event │ ├── alias.js │ └── support.js │ ├── exports │ ├── amd.js │ └── global.js │ ├── intro.js │ ├── jquery.js │ ├── manipulation.js │ ├── manipulation │ ├── _evalUrl.js │ ├── support.js │ └── var │ │ └── rcheckableType.js │ ├── offset.js │ ├── outro.js │ ├── queue.js │ ├── queue │ └── delay.js │ ├── selector-native.js │ ├── selector-sizzle.js │ ├── selector.js │ ├── serialize.js │ ├── sizzle │ └── dist │ │ ├── sizzle.js │ │ ├── sizzle.min.js │ │ └── sizzle.min.map │ ├── traversing.js │ ├── traversing │ ├── findFilter.js │ └── var │ │ └── rneedsContext.js │ ├── var │ ├── arr.js │ ├── class2type.js │ ├── concat.js │ ├── hasOwn.js │ ├── indexOf.js │ ├── pnum.js │ ├── push.js │ ├── rnotwhite.js │ ├── slice.js │ ├── strundefined.js │ ├── support.js │ └── toString.js │ └── wrap.js ├── css └── style.css ├── index.html └── js ├── demo.js └── linkslist.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower.json -------------------------------------------------------------------------------- /bower_components/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/.bower.json -------------------------------------------------------------------------------- /bower_components/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /bower_components/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/LICENSE -------------------------------------------------------------------------------- /bower_components/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/README.md -------------------------------------------------------------------------------- /bower_components/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/bower.json -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bower_components/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bower_components/bootstrap/grunt/bs-glyphicons-data-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/grunt/bs-glyphicons-data-generator.js -------------------------------------------------------------------------------- /bower_components/bootstrap/grunt/bs-lessdoc-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/grunt/bs-lessdoc-parser.js -------------------------------------------------------------------------------- /bower_components/bootstrap/grunt/bs-raw-files-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/grunt/bs-raw-files-generator.js -------------------------------------------------------------------------------- /bower_components/bootstrap/grunt/shrinkwrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/grunt/shrinkwrap.js -------------------------------------------------------------------------------- /bower_components/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/js/affix.js -------------------------------------------------------------------------------- /bower_components/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/js/alert.js -------------------------------------------------------------------------------- /bower_components/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/js/button.js -------------------------------------------------------------------------------- /bower_components/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /bower_components/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /bower_components/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /bower_components/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/js/modal.js -------------------------------------------------------------------------------- /bower_components/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/js/popover.js -------------------------------------------------------------------------------- /bower_components/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /bower_components/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/js/tab.js -------------------------------------------------------------------------------- /bower_components/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /bower_components/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/js/transition.js -------------------------------------------------------------------------------- /bower_components/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/badges.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/button-groups.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/close.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/code.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/component-animations.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/forms.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/glyphicons.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/grid.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/input-groups.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/labels.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/list-group.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/media.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/modals.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/navs.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/pager.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/panels.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/print.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/progress-bars.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/responsive-utilities.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/tables.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/theme.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/type.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/variables.less -------------------------------------------------------------------------------- /bower_components/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/less/wells.less -------------------------------------------------------------------------------- /bower_components/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/package.json -------------------------------------------------------------------------------- /bower_components/bootstrap/test-infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/test-infra/README.md -------------------------------------------------------------------------------- /bower_components/bootstrap/test-infra/npm-shrinkwrap.canonical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/test-infra/npm-shrinkwrap.canonical.json -------------------------------------------------------------------------------- /bower_components/bootstrap/test-infra/requirements.txt: -------------------------------------------------------------------------------- 1 | boto==2.20.0 2 | -------------------------------------------------------------------------------- /bower_components/bootstrap/test-infra/s3_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/test-infra/s3_cache.py -------------------------------------------------------------------------------- /bower_components/bootstrap/test-infra/sauce_browsers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/test-infra/sauce_browsers.yml -------------------------------------------------------------------------------- /bower_components/bootstrap/test-infra/uncached-npm-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/bootstrap/test-infra/uncached-npm-install.sh -------------------------------------------------------------------------------- /bower_components/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/.bower.json -------------------------------------------------------------------------------- /bower_components/jquery/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/MIT-LICENSE.txt -------------------------------------------------------------------------------- /bower_components/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/bower.json -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/dist/jquery.js -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/ajax.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/ajax/parseJSON.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/attributes.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /bower_components/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/callbacks.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/core.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/core/access.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/core/init.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/core/ready.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /bower_components/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/css.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/defaultDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/css/defaultDisplay.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/css/hiddenVisibleSelectors.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/css/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/css/swap.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/css/var/isHidden.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/data.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/data/Data.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/accepts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/data/accepts.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/data/var/data_priv.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/data/var/data_user.js -------------------------------------------------------------------------------- /bower_components/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/deferred.js -------------------------------------------------------------------------------- /bower_components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/deprecated.js -------------------------------------------------------------------------------- /bower_components/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/dimensions.js -------------------------------------------------------------------------------- /bower_components/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/effects.js -------------------------------------------------------------------------------- /bower_components/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /bower_components/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/effects/animatedSelector.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/event.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/event/alias.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/event/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /bower_components/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/exports/global.js -------------------------------------------------------------------------------- /bower_components/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/intro.js -------------------------------------------------------------------------------- /bower_components/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/jquery.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/manipulation.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/manipulation/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/offset.js -------------------------------------------------------------------------------- /bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /bower_components/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/queue.js -------------------------------------------------------------------------------- /bower_components/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /bower_components/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/selector-native.js -------------------------------------------------------------------------------- /bower_components/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /bower_components/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/serialize.js -------------------------------------------------------------------------------- /bower_components/jquery/src/sizzle/dist/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/sizzle/dist/sizzle.js -------------------------------------------------------------------------------- /bower_components/jquery/src/sizzle/dist/sizzle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/sizzle/dist/sizzle.min.js -------------------------------------------------------------------------------- /bower_components/jquery/src/sizzle/dist/sizzle.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/sizzle/dist/sizzle.min.map -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/traversing.js -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/traversing/var/rneedsContext.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/var/concat.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/var/push.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/var/slice.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/var/strundefined.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/var/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/var/toString.js -------------------------------------------------------------------------------- /bower_components/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/bower_components/jquery/src/wrap.js -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/css/style.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/index.html -------------------------------------------------------------------------------- /js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/js/demo.js -------------------------------------------------------------------------------- /js/linkslist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantzmiccoli/visited-captcha-history/HEAD/js/linkslist.js --------------------------------------------------------------------------------