Deploy website

Deploy website version based on b5bf53ef40
This commit is contained in:
Website Deployment Script 2018-07-08 17:42:36 +00:00
parent ee9d568913
commit daf63274f7
2952 changed files with 2957 additions and 2957 deletions

View file

@ -4,6 +4,7 @@ window.addEventListener('load', function() {
function button(label, ariaLabel, icon, className) {
const btn = document.createElement('button');
btn.classList.add('btnIcon', className);
btn.setAttribute('type', 'button');
btn.setAttribute('aria-label', ariaLabel);
btn.innerHTML =
'<div class="btnIcon__body">' +
@ -11,8 +12,7 @@ window.addEventListener('load', function() {
'<strong class="btnIcon__label">' +
label +
'</strong>' +
'</div>' +
'</button>';
'</div>';
return btn;
}