Skip to content

Commit

Permalink
Merge pull request #264 from junaidkbr/master
Browse files Browse the repository at this point in the history
Add space before string: auditor_unable_to_point_outside
  • Loading branch information
ironikart authored Jun 20, 2019
2 parents ac54229 + 2dee7bb commit 64e73b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Auditor/HTMLCSAuditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ _global.HTMLCSAuditor = new function()
} else if (HTMLCS.util.contains(body, message.element) === false) {
msg = _global.HTMLCS.getTranslation('auditor_unable_to_point_outside');
} else {
msg += _global.HTMLCS.getTranslation('auditor_unable_to_point_outside');
msg += ' ' + _global.HTMLCS.getTranslation('auditor_unable_to_point_outside');
}
}

Expand Down

0 comments on commit 64e73b6

Please sign in to comment.