2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-06 01:24:28 -06:00

Merge pull request #455 from vanillajonathan/patch-9

Set role attribute on the toolbar
This commit is contained in:
Jeroen Akkerman 2022-05-21 11:38:52 +02:00 committed by GitHub
commit 611aa50443
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2599,6 +2599,7 @@ EasyMDE.prototype.createToolbar = function (items) {
var bar = document.createElement('div');
bar.className = 'editor-toolbar';
bar.setAttribute('role', 'toolbar');
var self = this;