From affd75ced796adab3cbb80872cd8db7415835cb6 Mon Sep 17 00:00:00 2001 From: Matt Isner Date: Wed, 4 Apr 2018 16:31:17 -0400 Subject: [PATCH] fix(respondable): Identify the current axe instance by its application name when it exists --- lib/core/utils/respondable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/utils/respondable.js b/lib/core/utils/respondable.js index ae00ddd8e3..4e2146e31d 100644 --- a/lib/core/utils/respondable.js +++ b/lib/core/utils/respondable.js @@ -12,7 +12,7 @@ */ function _getSource() { var application = 'axe', version = '', src; - if (typeof axe !== 'undefined' && axe._audit && !axe._audit.application) { + if (typeof axe !== 'undefined' && axe._audit && axe._audit.application) { application = axe._audit.application; } if (typeof axe !== 'undefined') {