diff --git a/src/wp-includes/js/customize-loader.js b/src/wp-includes/js/customize-loader.js
index ce69a35..5bc34c4 100644
a
|
b
|
|
1 | 1 | /* global _wpCustomizeLoaderSettings, confirm */ |
| 2 | /* |
| 3 | * Expose a public API that allows the customizer to be |
| 4 | * loaded on any page. |
| 5 | */ |
2 | 6 | window.wp = window.wp || {}; |
3 | 7 | |
4 | 8 | (function( exports, $ ){ |
diff --git a/src/wp-includes/js/customize-preview.js b/src/wp-includes/js/customize-preview.js
index e58c8d6..7cea7d3 100644
a
|
b
|
|
| 1 | /* |
| 2 | * Script run inside a Customizer preview frame. |
| 3 | */ |
1 | 4 | (function( exports, $ ){ |
2 | 5 | var api = wp.customize, |
3 | 6 | debounce; |
… |
… |
|
30 | 33 | */ |
31 | 34 | api.Preview = api.Messenger.extend({ |
32 | 35 | /** |
33 | | * Requires params: |
34 | | * - url - the URL of preview frame |
| 36 | * @param {string} url The URL of preview frame |
35 | 37 | */ |
36 | 38 | initialize: function( params, options ) { |
37 | 39 | var self = this; |