Skip to content
This repository was archived by the owner on Dec 27, 2022. It is now read-only.

Commit d2a1c28

Browse files
committed
Merge branch 'master' into bugfix/slashing-customized
2 parents 6da2d9c + e406895 commit d2a1c28

10 files changed

+7
-6
lines changed

.travis.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,13 @@ language:
66

77
php:
88
- 5.3
9-
- 5.4
10-
- 5.5
11-
- 5.6
129
- 7.0
1310

1411
node_js:
1512
- stable
1613

1714
env:
15+
- WP_VERSION=4.5 WP_MULTISITE=0
1816
- WP_VERSION=trunk WP_MULTISITE=1
1917
- WP_VERSION=latest WP_MULTISITE=1
2018

assets/banner-1544x500.png

11.3 KB
Loading

assets/banner-772x250.png

5.27 KB
Loading

assets/banner.svg

+1
Loading

assets/icon-128x128.png

2.46 KB
Loading

assets/icon-256x256.png

4.31 KB
Loading

assets/icon.svg

+1
Loading

php/class-plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function init() {
5757
public function register_scripts( \WP_Scripts $wp_scripts ) {
5858
$min = ( SCRIPT_DEBUG ? '' : '.min' );
5959
$src = $this->dir_url . 'js/customize-snapshots' . $min . '.js';
60-
$deps = array( 'jquery', 'jquery-ui-dialog', 'wp-util', 'customize-widgets' );
60+
$deps = array( 'jquery', 'jquery-ui-dialog', 'wp-util', 'customize-controls' );
6161
$wp_scripts->add( $this->slug, $src, $deps );
6262
}
6363

readme.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!-- DO NOT EDIT THIS FILE; it is auto-generated from readme.txt -->
22
# Customize Snapshots
33

4+
![Banner](assets/banner-1544x500.png)
45
Allow Customizer states to be drafted, and previewed with a private URL.
56

67
**Contributors:** [westonruter](https://profiles.wordpress.org/westonruter), [valendesigns](https://profiles.wordpress.org/valendesigns), [xwp](https://profiles.wordpress.org/xwp), [newscorpau](https://profiles.wordpress.org/newscorpau)
@@ -10,7 +11,7 @@ Allow Customizer states to be drafted, and previewed with a private URL.
1011
**Stable tag:** 0.3.1
1112
**License:** [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
1213

13-
[![Build Status](https://travis-ci.org/xwp/wp-customize-snapshots.svg?branch=master)](https://travis-ci.org/xwp/wp-customize-snapshots) [![Coverage Status](https://coveralls.io/repos/xwp/wp-customize-snapshots/badge.svg?branch=master)](https://coveralls.io/github/xwp/wp-customize-snapshots) [![Built with Grunt](https://cdn.gruntjs.com/builtwith.png)](http://gruntjs.com) [![devDependency Status](https://david-dm.org/xwp/wp-customize-snapshots/dev-status.svg)](https://david-dm.org/xwp/wp-customize-snapshots#info=devDependencies)
14+
[![Build Status](https://travis-ci.org/xwp/wp-customize-snapshots.svg?branch=master)](https://travis-ci.org/xwp/wp-customize-snapshots) [![Coverage Status](https://coveralls.io/repos/xwp/wp-customize-snapshots/badge.svg?branch=master)](https://coveralls.io/github/xwp/wp-customize-snapshots) [![Built with Grunt](https://cdn.gruntjs.com/builtwith.svg)](http://gruntjs.com) [![devDependency Status](https://david-dm.org/xwp/wp-customize-snapshots/dev-status.svg)](https://david-dm.org/xwp/wp-customize-snapshots#info=devDependencies)
1415

1516
## Description ##
1617

0 commit comments

Comments
 (0)