Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions htdocs/js/ImageView/imageview.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

const zoomInButton = document.createElement('button');
zoomInButton.type = 'button';
zoomInButton.classList.add('btn', 'btn-outline-secondary', 'btn-sm', 'zoom-in');
zoomInButton.classList.add('btn', 'btn-outline-secondary', 'btn-sm');
zoomInButton.setAttribute('aria-label', 'zoom in');

const zoomInSVG = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
Expand Down Expand Up @@ -80,8 +80,8 @@

const zoomOutButton = document.createElement('button');
zoomOutButton.type = 'button';
zoomOutButton.classList.add('btn', 'btn-outline-secondary', 'btn-sm', 'zoom-in');
zoomOutButton.setAttribute('aria-label', 'zoom in');
zoomOutButton.classList.add('btn', 'btn-outline-secondary', 'btn-sm');
zoomOutButton.setAttribute('aria-label', 'zoom out');

const zoomOutSVG = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
zoomOutSVG.setAttribute('width', 16);
Expand Down
Loading