Merge pull request #3094 from chartjs/fix/3090

Make the iframe not focusable by using tabIndex of -1
This commit is contained in:
Evert Timberg 2016-08-09 23:00:50 -04:00 committed by GitHub
commit 5fea5a1156

View File

@ -875,6 +875,7 @@ module.exports = function(Chart) {
}
// Set the style
hiddenIframe.tabIndex = -1;
var style = hiddenIframe.style;
style.width = '100%';
style.display = 'block';