Skip to content

Commit

Permalink
fix(respondable): Identify the current axe instance by its applicatio…
Browse files Browse the repository at this point in the history
…n name when it exists
  • Loading branch information
isner committed Apr 4, 2018
1 parent eb09248 commit affd75c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/utils/respondable.js
Original file line number Diff line number Diff line change
Expand Up @@ -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') {
Expand Down

0 comments on commit affd75c

Please sign in to comment.