File tree Expand file tree Collapse file tree 4 files changed +15
-3
lines changed
Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 22## Changelog ##
33
44
5+ ### 0.21.7 ###
6+
7+ Improve compatibility with adblock-like browser extensions
8+
9+ * Such extensions can block some scripts that used on passing fill form step
10+ * Even when we have such scripts blocked, respondent must be able to proceed with form filling
11+
12+
513### 0.21.6 ###
614
715Avoid running test editor code at respondents results page
Original file line number Diff line number Diff line change 88
99** Tested up to:** 4.9
1010
11- ** Stable tag:** 0.21.6
11+ ** Stable tag:** 0.21.7
1212
1313** License:** GPLv3
1414
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ var Wpt = Wpt || {};
22Wpt . form = Wpt . form || { } ;
33
44Wpt . initWebshim = function ( baseUrl ) {
5- if ( this . initialized ) {
5+ if ( this . initialized || typeof webshim === 'undefined' ) {
66 return ;
77 }
88 this . initialized = true ;
@@ -53,6 +53,10 @@ Wpt.form.initQuestionAnswered = function(form) {
5353} ;
5454
5555Wpt . initEvercookie = function ( ) {
56+ if ( typeof evercookie === 'undefined' ) {
57+ return ;
58+ }
59+
5660 var ec = new evercookie ( {
5761 tests : 3 ,
5862 baseurl : Wpt . evercookieBaseurl ,
Original file line number Diff line number Diff line change 33 * Plugin Name: Wp-testing
44 * Plugin URI: http://wordpress.org/extend/plugins/wp-testing/
55 * Description: Helps to create psychological tests.
6- * Version: 0.21.6
6+ * Version: 0.21.7
77 * Author: Alexander Ustimenko
88 * Author URI: http://ustimen.co
99 * License: GPL3
You can’t perform that action at this time.
0 commit comments