├── .gitmodules ├── .jscsrc ├── .jshintignore ├── .jshintrc ├── .travis.yml ├── css └── customize-partial-refresh-widgets-preview.css ├── customize-partial-refresh.php ├── js ├── customize-controls-hacks.js ├── customize-preview-nav-menus.js ├── customize-preview-widgets.js ├── customize-selective-refresh.js ├── customize-widgets-hacks.js ├── plugin-support │ └── jetpack.js └── theme-support │ └── twentythirteen.js ├── php ├── class-wp-customize-nav-menus-partial-refresh.php ├── class-wp-customize-partial.php ├── class-wp-customize-selective-refresh.php └── class-wp-customize-widgets-partial-refresh.php ├── phpcs.ruleset.xml ├── phpunit.xml.dist ├── readme.md ├── readme.txt ├── svn-url └── tests ├── php ├── test-class-wp-customize-nav-menus-partial-refresh.php ├── test-class-wp-customize-partial.php ├── test-class-wp-customize-selective-refresh-ajax.php ├── test-class-wp-customize-selective-refresh.php └── test-class-wp-customize-widgets-partial-refresh.php └── qunit ├── fixtures └── customize-preview.js ├── index.html ├── js └── customize-preview.js └── vendor ├── qunit.css ├── qunit.js ├── sinon-qunit.js └── sinon.js /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- 1 | dev-lib/.jscsrc -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/.jshintignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | dev-lib/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/.travis.yml -------------------------------------------------------------------------------- /css/customize-partial-refresh-widgets-preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/css/customize-partial-refresh-widgets-preview.css -------------------------------------------------------------------------------- /customize-partial-refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/customize-partial-refresh.php -------------------------------------------------------------------------------- /js/customize-controls-hacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/js/customize-controls-hacks.js -------------------------------------------------------------------------------- /js/customize-preview-nav-menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/js/customize-preview-nav-menus.js -------------------------------------------------------------------------------- /js/customize-preview-widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/js/customize-preview-widgets.js -------------------------------------------------------------------------------- /js/customize-selective-refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/js/customize-selective-refresh.js -------------------------------------------------------------------------------- /js/customize-widgets-hacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/js/customize-widgets-hacks.js -------------------------------------------------------------------------------- /js/plugin-support/jetpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/js/plugin-support/jetpack.js -------------------------------------------------------------------------------- /js/theme-support/twentythirteen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/js/theme-support/twentythirteen.js -------------------------------------------------------------------------------- /php/class-wp-customize-nav-menus-partial-refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/php/class-wp-customize-nav-menus-partial-refresh.php -------------------------------------------------------------------------------- /php/class-wp-customize-partial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/php/class-wp-customize-partial.php -------------------------------------------------------------------------------- /php/class-wp-customize-selective-refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/php/class-wp-customize-selective-refresh.php -------------------------------------------------------------------------------- /php/class-wp-customize-widgets-partial-refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/php/class-wp-customize-widgets-partial-refresh.php -------------------------------------------------------------------------------- /phpcs.ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/phpcs.ruleset.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | dev-lib/phpunit-plugin.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/readme.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/readme.txt -------------------------------------------------------------------------------- /svn-url: -------------------------------------------------------------------------------- 1 | https://plugins.svn.wordpress.org/customize-partial-refresh/ 2 | -------------------------------------------------------------------------------- /tests/php/test-class-wp-customize-nav-menus-partial-refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/tests/php/test-class-wp-customize-nav-menus-partial-refresh.php -------------------------------------------------------------------------------- /tests/php/test-class-wp-customize-partial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/tests/php/test-class-wp-customize-partial.php -------------------------------------------------------------------------------- /tests/php/test-class-wp-customize-selective-refresh-ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/tests/php/test-class-wp-customize-selective-refresh-ajax.php -------------------------------------------------------------------------------- /tests/php/test-class-wp-customize-selective-refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/tests/php/test-class-wp-customize-selective-refresh.php -------------------------------------------------------------------------------- /tests/php/test-class-wp-customize-widgets-partial-refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/tests/php/test-class-wp-customize-widgets-partial-refresh.php -------------------------------------------------------------------------------- /tests/qunit/fixtures/customize-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/tests/qunit/fixtures/customize-preview.js -------------------------------------------------------------------------------- /tests/qunit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/tests/qunit/index.html -------------------------------------------------------------------------------- /tests/qunit/js/customize-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/tests/qunit/js/customize-preview.js -------------------------------------------------------------------------------- /tests/qunit/vendor/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/tests/qunit/vendor/qunit.css -------------------------------------------------------------------------------- /tests/qunit/vendor/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/tests/qunit/vendor/qunit.js -------------------------------------------------------------------------------- /tests/qunit/vendor/sinon-qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/tests/qunit/vendor/sinon-qunit.js -------------------------------------------------------------------------------- /tests/qunit/vendor/sinon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-partial-refresh/HEAD/tests/qunit/vendor/sinon.js --------------------------------------------------------------------------------