preview.js 261 B

1234567891011121314
  1. /* jshint esnext:true */
  2. import general from './general';
  3. import layout from './layout';
  4. import styles from './styles';
  5. (function($, undefined) {
  6. 'use strict';
  7. general( wp.customize, $ );
  8. layout( wp.customize, $ );
  9. styles( wp.customize, $ );
  10. })(jQuery);