Skip to content

Commit

Permalink
Merge branch 'hotfix/0.21.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
garex committed Jan 25, 2018
2 parents 2d76e6b + b87c41c commit 6ed4ff0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
## Changelog ##


### 0.21.7 ###

Improve compatibility with adblock-like browser extensions

* Such extensions can block some scripts that used on passing fill form step
* Even when we have such scripts blocked, respondent must be able to proceed with form filling


### 0.21.6 ###

Avoid running test editor code at respondents results page
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

**Tested up to:** 4.9

**Stable tag:** 0.21.6
**Stable tag:** 0.21.7

**License:** GPLv3

Expand Down
6 changes: 5 additions & 1 deletion js/test-pass-fill-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var Wpt = Wpt || {};
Wpt.form = Wpt.form || {};

Wpt.initWebshim = function(baseUrl) {
if (this.initialized) {
if (this.initialized || typeof webshim === 'undefined') {
return;
}
this.initialized = true;
Expand Down Expand Up @@ -53,6 +53,10 @@ Wpt.form.initQuestionAnswered = function(form) {
};

Wpt.initEvercookie = function() {
if (typeof evercookie === 'undefined') {
return;
}

var ec = new evercookie({
tests : 3,
baseurl : Wpt.evercookieBaseurl,
Expand Down
2 changes: 1 addition & 1 deletion wp-testing.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Wp-testing
* Plugin URI: http://wordpress.org/extend/plugins/wp-testing/
* Description: Helps to create psychological tests.
* Version: 0.21.6
* Version: 0.21.7
* Author: Alexander Ustimenko
* Author URI: http://ustimen.co
* License: GPL3
Expand Down

0 comments on commit 6ed4ff0

Please sign in to comment.