├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .wp-env.json ├── CONTRIBUTING.md ├── Gruntfile.js ├── admin-styles.css ├── ajax.php ├── banner-1544x500.png ├── bin └── install-wp-tests.sh ├── composer.json ├── css ├── automatticons-regular-webfont.eot ├── automatticons-regular-webfont.svg ├── automatticons-regular-webfont.ttf ├── automatticons-regular-webfont.woff ├── polldaddy-rtl.css ├── polldaddy.css └── style-editor.css ├── img ├── box-texture.png ├── draggy-handle.png ├── error-blue.png ├── error-gray.png ├── export-everywhere.png ├── gif │ └── poll-block-v1.1.gif ├── grunion-menu-2x.png ├── grunion-menu-hover-2x.png ├── grunion-menu-hover.png ├── grunion-menu.png ├── icon-clear-search.png ├── icon-reorder.png ├── icon-report-ip-analysis.png ├── info.png ├── info@2x.png ├── item-icons │ ├── icon-block-applause.png │ ├── icon-block-feedback.png │ ├── icon-block-nps.png │ ├── icon-block-poll.png │ ├── icon-block-survey-embed.png │ └── icon-block-voting.png ├── nero-hand-lrg.png ├── nero-hand-lrg@2x.png ├── nero-hand-med.png ├── nero-hand-med@2x.png ├── nero-hand-sml.png ├── nero-hand-sml@2x.png ├── pd-wp-icon-blue-lrg.png ├── pd-wp-icon-blue-lrg@2x.png ├── pd-wp-icon-blue.png ├── pd-wp-icon-gray-lrg.png ├── pd-wp-icon-gray-lrg@2x.png ├── pd-wp-icon-gray.png ├── pd-wp-icon-hover.png ├── pd-wp-icon.png ├── pd-wp-icons.png ├── polldaddy.png ├── polldaddy@2x.png ├── rate-graph-dn.png ├── rate-graph-up.png ├── st-alum-light.png ├── st-loader.gif ├── st-manga.png ├── st-micro.png ├── st-music.png ├── st-paper.png ├── st-plain-dark.png ├── st-plain-light.png ├── st-plastic-black.png ├── st-plastic-grey.png ├── st-plastic-white.png ├── st-skull-dark.png ├── st-skull-light.png ├── st-sunset.png ├── st-tech-dark.png ├── st-tech-grey.png ├── st-tech-light.png ├── st-thinking-female.png ├── st-thinking-male.png ├── st-working-female.png ├── st-working-male.png ├── star-blue-lrg.png ├── star-blue-lrg@2x.png ├── star-blue-med.png ├── star-blue-med@2x.png ├── star-blue-sml.png ├── star-blue-sml@2x.png ├── star-green-lrg.png ├── star-green-lrg@2x.png ├── star-green-med.png ├── star-green-med@2x.png ├── star-green-sml.png ├── star-green-sml@2x.png ├── star-grey-lrg.png ├── star-grey-lrg@2x.png ├── star-grey-med.png ├── star-grey-med@2x.png ├── star-grey-sml.png ├── star-grey-sml@2x.png ├── star-pd-sml.png ├── star-red-lrg.png ├── star-red-lrg@2x.png ├── star-red-med.png ├── star-red-med@2x.png ├── star-red-sml.png ├── star-red-sml@2x.png ├── star-yellow-lrg.png ├── star-yellow-lrg@2x.png ├── star-yellow-med.png ├── star-yellow-med@2x.png ├── star-yellow-sml.png ├── star-yellow-sml@2x.png ├── svg │ ├── cs-logo.svg │ ├── cs-logo2.svg │ ├── cs-polls.svg │ ├── icon-block-applause-round.svg │ ├── icon-block-feedbackButton-round.svg │ ├── icon-block-nps-round.svg │ ├── icon-block-poll-round.svg │ ├── icon-block-project-round.svg │ ├── icon-block-quiz-round.svg │ ├── icon-block-rating-round.svg │ ├── icon-block-survey-round.svg │ ├── icon-block-voting-round.svg │ └── lock.svg └── video │ ├── applause-block-tutorial.mp4 │ ├── embed-crowdsignal.mp4 │ ├── feedback-button-block-tutorial.mp4 │ ├── nps-block-tutorial.mp4 │ ├── poll-block-tutorial.mp4 │ ├── slider-crowdsignal.mp4 │ ├── survey-embed-tutorial.mp4 │ └── vote-block-tutorial.mp4 ├── js ├── common.js ├── jscolor.js ├── poll-style-picker.js ├── polldaddy-shortcode.js ├── polldaddy.js ├── rating.js └── style-editor.js ├── languages └── polldaddy.pot ├── package.json ├── partials ├── api-key-page.php ├── crowdsignal-landing-page.php ├── errors.php ├── html-admin-setup-footer.php ├── html-admin-setup-header.php ├── html-admin-setup-step-1.php ├── html-admin-setup-step-2.php ├── html-admin-setup-step-3.php ├── html-admin-teaser.php ├── index.php ├── poll-edit-form.php ├── polls-table.php ├── settings-2.php └── settings.php ├── phpcs.xml.dist ├── phpunit.xml.dist ├── polldaddy-client.php ├── polldaddy-org.php ├── polldaddy-shortcode.php ├── polldaddy-xml.php ├── polldaddy.php ├── popups.php ├── rating.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png └── tests ├── Integration ├── Admin │ └── AdminActionsTest.php ├── Ajax │ └── MediaActionsTest.php ├── Popups │ └── PopupsMediaTest.php └── TestCase.php ├── Unit └── SampleTest.php └── bootstrap.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/.wp-env.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /admin-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/admin-styles.css -------------------------------------------------------------------------------- /ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/ajax.php -------------------------------------------------------------------------------- /banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/banner-1544x500.png -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /css/automatticons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/css/automatticons-regular-webfont.eot -------------------------------------------------------------------------------- /css/automatticons-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/css/automatticons-regular-webfont.svg -------------------------------------------------------------------------------- /css/automatticons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/css/automatticons-regular-webfont.ttf -------------------------------------------------------------------------------- /css/automatticons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/css/automatticons-regular-webfont.woff -------------------------------------------------------------------------------- /css/polldaddy-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/css/polldaddy-rtl.css -------------------------------------------------------------------------------- /css/polldaddy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/css/polldaddy.css -------------------------------------------------------------------------------- /css/style-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/css/style-editor.css -------------------------------------------------------------------------------- /img/box-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/box-texture.png -------------------------------------------------------------------------------- /img/draggy-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/draggy-handle.png -------------------------------------------------------------------------------- /img/error-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/error-blue.png -------------------------------------------------------------------------------- /img/error-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/error-gray.png -------------------------------------------------------------------------------- /img/export-everywhere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/export-everywhere.png -------------------------------------------------------------------------------- /img/gif/poll-block-v1.1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/gif/poll-block-v1.1.gif -------------------------------------------------------------------------------- /img/grunion-menu-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/grunion-menu-2x.png -------------------------------------------------------------------------------- /img/grunion-menu-hover-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/grunion-menu-hover-2x.png -------------------------------------------------------------------------------- /img/grunion-menu-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/grunion-menu-hover.png -------------------------------------------------------------------------------- /img/grunion-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/grunion-menu.png -------------------------------------------------------------------------------- /img/icon-clear-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/icon-clear-search.png -------------------------------------------------------------------------------- /img/icon-reorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/icon-reorder.png -------------------------------------------------------------------------------- /img/icon-report-ip-analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/icon-report-ip-analysis.png -------------------------------------------------------------------------------- /img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/info.png -------------------------------------------------------------------------------- /img/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/info@2x.png -------------------------------------------------------------------------------- /img/item-icons/icon-block-applause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/item-icons/icon-block-applause.png -------------------------------------------------------------------------------- /img/item-icons/icon-block-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/item-icons/icon-block-feedback.png -------------------------------------------------------------------------------- /img/item-icons/icon-block-nps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/item-icons/icon-block-nps.png -------------------------------------------------------------------------------- /img/item-icons/icon-block-poll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/item-icons/icon-block-poll.png -------------------------------------------------------------------------------- /img/item-icons/icon-block-survey-embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/item-icons/icon-block-survey-embed.png -------------------------------------------------------------------------------- /img/item-icons/icon-block-voting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/item-icons/icon-block-voting.png -------------------------------------------------------------------------------- /img/nero-hand-lrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/nero-hand-lrg.png -------------------------------------------------------------------------------- /img/nero-hand-lrg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/nero-hand-lrg@2x.png -------------------------------------------------------------------------------- /img/nero-hand-med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/nero-hand-med.png -------------------------------------------------------------------------------- /img/nero-hand-med@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/nero-hand-med@2x.png -------------------------------------------------------------------------------- /img/nero-hand-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/nero-hand-sml.png -------------------------------------------------------------------------------- /img/nero-hand-sml@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/nero-hand-sml@2x.png -------------------------------------------------------------------------------- /img/pd-wp-icon-blue-lrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/pd-wp-icon-blue-lrg.png -------------------------------------------------------------------------------- /img/pd-wp-icon-blue-lrg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/pd-wp-icon-blue-lrg@2x.png -------------------------------------------------------------------------------- /img/pd-wp-icon-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/pd-wp-icon-blue.png -------------------------------------------------------------------------------- /img/pd-wp-icon-gray-lrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/pd-wp-icon-gray-lrg.png -------------------------------------------------------------------------------- /img/pd-wp-icon-gray-lrg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/pd-wp-icon-gray-lrg@2x.png -------------------------------------------------------------------------------- /img/pd-wp-icon-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/pd-wp-icon-gray.png -------------------------------------------------------------------------------- /img/pd-wp-icon-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/pd-wp-icon-hover.png -------------------------------------------------------------------------------- /img/pd-wp-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/pd-wp-icon.png -------------------------------------------------------------------------------- /img/pd-wp-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/pd-wp-icons.png -------------------------------------------------------------------------------- /img/polldaddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/polldaddy.png -------------------------------------------------------------------------------- /img/polldaddy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/polldaddy@2x.png -------------------------------------------------------------------------------- /img/rate-graph-dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/rate-graph-dn.png -------------------------------------------------------------------------------- /img/rate-graph-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/rate-graph-up.png -------------------------------------------------------------------------------- /img/st-alum-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-alum-light.png -------------------------------------------------------------------------------- /img/st-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-loader.gif -------------------------------------------------------------------------------- /img/st-manga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-manga.png -------------------------------------------------------------------------------- /img/st-micro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-micro.png -------------------------------------------------------------------------------- /img/st-music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-music.png -------------------------------------------------------------------------------- /img/st-paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-paper.png -------------------------------------------------------------------------------- /img/st-plain-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-plain-dark.png -------------------------------------------------------------------------------- /img/st-plain-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-plain-light.png -------------------------------------------------------------------------------- /img/st-plastic-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-plastic-black.png -------------------------------------------------------------------------------- /img/st-plastic-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-plastic-grey.png -------------------------------------------------------------------------------- /img/st-plastic-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-plastic-white.png -------------------------------------------------------------------------------- /img/st-skull-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-skull-dark.png -------------------------------------------------------------------------------- /img/st-skull-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-skull-light.png -------------------------------------------------------------------------------- /img/st-sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-sunset.png -------------------------------------------------------------------------------- /img/st-tech-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-tech-dark.png -------------------------------------------------------------------------------- /img/st-tech-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-tech-grey.png -------------------------------------------------------------------------------- /img/st-tech-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-tech-light.png -------------------------------------------------------------------------------- /img/st-thinking-female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-thinking-female.png -------------------------------------------------------------------------------- /img/st-thinking-male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-thinking-male.png -------------------------------------------------------------------------------- /img/st-working-female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-working-female.png -------------------------------------------------------------------------------- /img/st-working-male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/st-working-male.png -------------------------------------------------------------------------------- /img/star-blue-lrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-blue-lrg.png -------------------------------------------------------------------------------- /img/star-blue-lrg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-blue-lrg@2x.png -------------------------------------------------------------------------------- /img/star-blue-med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-blue-med.png -------------------------------------------------------------------------------- /img/star-blue-med@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-blue-med@2x.png -------------------------------------------------------------------------------- /img/star-blue-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-blue-sml.png -------------------------------------------------------------------------------- /img/star-blue-sml@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-blue-sml@2x.png -------------------------------------------------------------------------------- /img/star-green-lrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-green-lrg.png -------------------------------------------------------------------------------- /img/star-green-lrg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-green-lrg@2x.png -------------------------------------------------------------------------------- /img/star-green-med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-green-med.png -------------------------------------------------------------------------------- /img/star-green-med@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-green-med@2x.png -------------------------------------------------------------------------------- /img/star-green-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-green-sml.png -------------------------------------------------------------------------------- /img/star-green-sml@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-green-sml@2x.png -------------------------------------------------------------------------------- /img/star-grey-lrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-grey-lrg.png -------------------------------------------------------------------------------- /img/star-grey-lrg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-grey-lrg@2x.png -------------------------------------------------------------------------------- /img/star-grey-med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-grey-med.png -------------------------------------------------------------------------------- /img/star-grey-med@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-grey-med@2x.png -------------------------------------------------------------------------------- /img/star-grey-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-grey-sml.png -------------------------------------------------------------------------------- /img/star-grey-sml@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-grey-sml@2x.png -------------------------------------------------------------------------------- /img/star-pd-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-pd-sml.png -------------------------------------------------------------------------------- /img/star-red-lrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-red-lrg.png -------------------------------------------------------------------------------- /img/star-red-lrg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-red-lrg@2x.png -------------------------------------------------------------------------------- /img/star-red-med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-red-med.png -------------------------------------------------------------------------------- /img/star-red-med@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-red-med@2x.png -------------------------------------------------------------------------------- /img/star-red-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-red-sml.png -------------------------------------------------------------------------------- /img/star-red-sml@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-red-sml@2x.png -------------------------------------------------------------------------------- /img/star-yellow-lrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-yellow-lrg.png -------------------------------------------------------------------------------- /img/star-yellow-lrg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-yellow-lrg@2x.png -------------------------------------------------------------------------------- /img/star-yellow-med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-yellow-med.png -------------------------------------------------------------------------------- /img/star-yellow-med@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-yellow-med@2x.png -------------------------------------------------------------------------------- /img/star-yellow-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-yellow-sml.png -------------------------------------------------------------------------------- /img/star-yellow-sml@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/star-yellow-sml@2x.png -------------------------------------------------------------------------------- /img/svg/cs-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/cs-logo.svg -------------------------------------------------------------------------------- /img/svg/cs-logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/cs-logo2.svg -------------------------------------------------------------------------------- /img/svg/cs-polls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/cs-polls.svg -------------------------------------------------------------------------------- /img/svg/icon-block-applause-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/icon-block-applause-round.svg -------------------------------------------------------------------------------- /img/svg/icon-block-feedbackButton-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/icon-block-feedbackButton-round.svg -------------------------------------------------------------------------------- /img/svg/icon-block-nps-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/icon-block-nps-round.svg -------------------------------------------------------------------------------- /img/svg/icon-block-poll-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/icon-block-poll-round.svg -------------------------------------------------------------------------------- /img/svg/icon-block-project-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/icon-block-project-round.svg -------------------------------------------------------------------------------- /img/svg/icon-block-quiz-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/icon-block-quiz-round.svg -------------------------------------------------------------------------------- /img/svg/icon-block-rating-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/icon-block-rating-round.svg -------------------------------------------------------------------------------- /img/svg/icon-block-survey-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/icon-block-survey-round.svg -------------------------------------------------------------------------------- /img/svg/icon-block-voting-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/icon-block-voting-round.svg -------------------------------------------------------------------------------- /img/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/svg/lock.svg -------------------------------------------------------------------------------- /img/video/applause-block-tutorial.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/video/applause-block-tutorial.mp4 -------------------------------------------------------------------------------- /img/video/embed-crowdsignal.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/video/embed-crowdsignal.mp4 -------------------------------------------------------------------------------- /img/video/feedback-button-block-tutorial.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/video/feedback-button-block-tutorial.mp4 -------------------------------------------------------------------------------- /img/video/nps-block-tutorial.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/video/nps-block-tutorial.mp4 -------------------------------------------------------------------------------- /img/video/poll-block-tutorial.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/video/poll-block-tutorial.mp4 -------------------------------------------------------------------------------- /img/video/slider-crowdsignal.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/video/slider-crowdsignal.mp4 -------------------------------------------------------------------------------- /img/video/survey-embed-tutorial.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/video/survey-embed-tutorial.mp4 -------------------------------------------------------------------------------- /img/video/vote-block-tutorial.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/img/video/vote-block-tutorial.mp4 -------------------------------------------------------------------------------- /js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/js/common.js -------------------------------------------------------------------------------- /js/jscolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/js/jscolor.js -------------------------------------------------------------------------------- /js/poll-style-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/js/poll-style-picker.js -------------------------------------------------------------------------------- /js/polldaddy-shortcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/js/polldaddy-shortcode.js -------------------------------------------------------------------------------- /js/polldaddy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/js/polldaddy.js -------------------------------------------------------------------------------- /js/rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/js/rating.js -------------------------------------------------------------------------------- /js/style-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/js/style-editor.js -------------------------------------------------------------------------------- /languages/polldaddy.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/languages/polldaddy.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/package.json -------------------------------------------------------------------------------- /partials/api-key-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/api-key-page.php -------------------------------------------------------------------------------- /partials/crowdsignal-landing-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/crowdsignal-landing-page.php -------------------------------------------------------------------------------- /partials/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/errors.php -------------------------------------------------------------------------------- /partials/html-admin-setup-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/html-admin-setup-footer.php -------------------------------------------------------------------------------- /partials/html-admin-setup-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/html-admin-setup-header.php -------------------------------------------------------------------------------- /partials/html-admin-setup-step-1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/html-admin-setup-step-1.php -------------------------------------------------------------------------------- /partials/html-admin-setup-step-2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/html-admin-setup-step-2.php -------------------------------------------------------------------------------- /partials/html-admin-setup-step-3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/html-admin-setup-step-3.php -------------------------------------------------------------------------------- /partials/html-admin-teaser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/html-admin-teaser.php -------------------------------------------------------------------------------- /partials/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/index.php -------------------------------------------------------------------------------- /partials/poll-edit-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/poll-edit-form.php -------------------------------------------------------------------------------- /partials/polls-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/polls-table.php -------------------------------------------------------------------------------- /partials/settings-2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/settings-2.php -------------------------------------------------------------------------------- /partials/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/partials/settings.php -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /polldaddy-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/polldaddy-client.php -------------------------------------------------------------------------------- /polldaddy-org.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/polldaddy-org.php -------------------------------------------------------------------------------- /polldaddy-shortcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/polldaddy-shortcode.php -------------------------------------------------------------------------------- /polldaddy-xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/polldaddy-xml.php -------------------------------------------------------------------------------- /polldaddy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/polldaddy.php -------------------------------------------------------------------------------- /popups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/popups.php -------------------------------------------------------------------------------- /rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/rating.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/screenshot-1.png -------------------------------------------------------------------------------- /screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/screenshot-2.png -------------------------------------------------------------------------------- /tests/Integration/Admin/AdminActionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/tests/Integration/Admin/AdminActionsTest.php -------------------------------------------------------------------------------- /tests/Integration/Ajax/MediaActionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/tests/Integration/Ajax/MediaActionsTest.php -------------------------------------------------------------------------------- /tests/Integration/Popups/PopupsMediaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/tests/Integration/Popups/PopupsMediaTest.php -------------------------------------------------------------------------------- /tests/Integration/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/tests/Integration/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/SampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/tests/Unit/SampleTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/crowdsignal-plugin/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------