Skip to content

Commit affd75c

Browse files
committed
fix(respondable): Identify the current axe instance by its application name when it exists
1 parent eb09248 commit affd75c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/core/utils/respondable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
function _getSource() {
1414
var application = 'axe', version = '', src;
15-
if (typeof axe !== 'undefined' && axe._audit && !axe._audit.application) {
15+
if (typeof axe !== 'undefined' && axe._audit && axe._audit.application) {
1616
application = axe._audit.application;
1717
}
1818
if (typeof axe !== 'undefined') {

0 commit comments

Comments
 (0)