Skip to content

Commit 6ed4ff0

Browse files
committed
Merge branch 'hotfix/0.21.7'
2 parents 2d76e6b + b87c41c commit 6ed4ff0

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
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

715
Avoid running test editor code at respondents results page

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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

js/test-pass-fill-form.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var Wpt = Wpt || {};
22
Wpt.form = Wpt.form || {};
33

44
Wpt.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

5555
Wpt.initEvercookie = function() {
56+
if (typeof evercookie === 'undefined') {
57+
return;
58+
}
59+
5660
var ec = new evercookie({
5761
tests : 3,
5862
baseurl : Wpt.evercookieBaseurl,

wp-testing.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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

0 commit comments

Comments
 (0)