Version Description
Download this release
Release Info
Developer | wptouch |
Plugin | WPtouch |
Version | 4.3.22 |
Comparing to | |
See all releases |
Code changes from version 4.3.21 to 4.3.22
- admin/customizer/wptouch-customizer.js +16 -0
- lang/wptouch.pot +1 -1
- readme.txt +6 -2
admin/customizer/wptouch-customizer.js
CHANGED
@@ -156,6 +156,22 @@
|
|
156 |
|
157 |
// Fire a change to deal with Customizer controlof .change()
|
158 |
$( '#customize-theme-controls' ).find( 'input[type="checkbox"], select' ).trigger( 'wptouch.customizerReady' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
}
|
160 |
|
161 |
function wptouchCustomizerChecklist() {
|
156 |
|
157 |
// Fire a change to deal with Customizer controlof .change()
|
158 |
$( '#customize-theme-controls' ).find( 'input[type="checkbox"], select' ).trigger( 'wptouch.customizerReady' );
|
159 |
+
|
160 |
+
// Live preview changes to custom css (Additional CSS) field.
|
161 |
+
$( '.customize-control-code_editor textarea.code' ).on( 'change wptouch.customizerReady', function( e ) {
|
162 |
+
$( '.customize-custom-css-styles' ).remove();
|
163 |
+
var customCss = $( this ).val(),
|
164 |
+
customCssContents = '<style class="customize-custom-css-styles" type="text/css">' + customCss + '</style>';
|
165 |
+
$( '#customize-preview iframe' )
|
166 |
+
.contents()
|
167 |
+
.find( '.customize-custom-css-styles' )
|
168 |
+
.remove()
|
169 |
+
.end()
|
170 |
+
.find( 'head' )
|
171 |
+
.append(
|
172 |
+
customCssContents
|
173 |
+
);
|
174 |
+
} );
|
175 |
}
|
176 |
|
177 |
function wptouchCustomizerChecklist() {
|
lang/wptouch.pot
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WPtouch Mobile Plugin 4.3.21\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wptouch\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WPtouch Mobile Plugin 4.3.21\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wptouch\n"
|
7 |
+
"POT-Creation-Date: 2017-11-16 14:28:47+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: wptouch, sureswiftcapital, duanestorey, dalemugford, adamdipardo, oxymoron
|
3 |
Tags: wptouch, iphone, ipod, bravenewcode, mobile, mobile-friendly, android, blackberry, smartphone, responsive, design, mobile plugin, ios, mobile theme
|
4 |
Requires at least: 4.2
|
5 |
-
Stable tag: 4.3.
|
6 |
-
Tested up to: 4.
|
7 |
License: GPLv2
|
8 |
|
9 |
Make your WordPress website mobile-friendly with just a few clicks.
|
@@ -33,6 +33,10 @@ For more information visit [WPtouch.com](http://www.wptouch.com/?utm_campaign=wp
|
|
33 |
|
34 |
== Changelog ==
|
35 |
|
|
|
|
|
|
|
|
|
36 |
= Version 4.3.21 (October 6, 2017) =
|
37 |
|
38 |
* Fixed: Output of script tags within the customizer custom footer content area.
|
2 |
Contributors: wptouch, sureswiftcapital, duanestorey, dalemugford, adamdipardo, oxymoron
|
3 |
Tags: wptouch, iphone, ipod, bravenewcode, mobile, mobile-friendly, android, blackberry, smartphone, responsive, design, mobile plugin, ios, mobile theme
|
4 |
Requires at least: 4.2
|
5 |
+
Stable tag: 4.3.22
|
6 |
+
Tested up to: 4.9
|
7 |
License: GPLv2
|
8 |
|
9 |
Make your WordPress website mobile-friendly with just a few clicks.
|
33 |
|
34 |
== Changelog ==
|
35 |
|
36 |
+
= Version 4.3.22 (Nov 16, 2017) =
|
37 |
+
|
38 |
+
* New Feature: Live view of customizer additional CSS field content.
|
39 |
+
|
40 |
= Version 4.3.21 (October 6, 2017) =
|
41 |
|
42 |
* Fixed: Output of script tags within the customizer custom footer content area.
|