equal
deleted
inserted
replaced
|
1 /** |
|
2 * @output wp-includes/js/customize-base.js |
|
3 */ |
|
4 |
1 /** @namespace wp */ |
5 /** @namespace wp */ |
2 window.wp = window.wp || {}; |
6 window.wp = window.wp || {}; |
3 |
7 |
4 (function( exports, $ ){ |
8 (function( exports, $ ){ |
5 var api = {}, ctor, inherits, |
9 var api = {}, ctor, inherits, |
906 api = $.extend( new api.Values(), api ); |
910 api = $.extend( new api.Values(), api ); |
907 |
911 |
908 /** |
912 /** |
909 * Get all customize settings. |
913 * Get all customize settings. |
910 * |
914 * |
911 * @memberOf wp.customize |
915 * @alias wp.customize.get |
912 * |
916 * |
913 * @return {object} |
917 * @return {object} |
914 */ |
918 */ |
915 api.get = function() { |
919 api.get = function() { |
916 var result = {}; |
920 var result = {}; |
932 /** |
936 /** |
933 * Parse query string. |
937 * Parse query string. |
934 * |
938 * |
935 * @since 4.7.0 |
939 * @since 4.7.0 |
936 * @access public |
940 * @access public |
937 * @memberOf wp.customize.utils |
941 * |
|
942 * @alias wp.customize.utils.parseQueryString |
938 * |
943 * |
939 * @param {string} queryString Query string. |
944 * @param {string} queryString Query string. |
940 * @returns {object} Parsed query string. |
945 * @returns {object} Parsed query string. |
941 */ |
946 */ |
942 api.utils.parseQueryString = function parseQueryString( queryString ) { |
947 api.utils.parseQueryString = function parseQueryString( queryString ) { |