mirror of
https://github.com/okalachev/flix.git
synced 2025-07-27 01:29:33 +00:00
* Create book structure. * Add workflow for linting the markdown using markdownlint. * Add workflow for building the book with mdBook and deploying to the website. * Restyle mdBook and support GitHub-style alerts. * Add images zooming. * Add index, firmware structure and gyroscope articles.
8 lines
231 B
JavaScript
8 lines
231 B
JavaScript
// Enable zoom on images larger than 300px
|
|
document.querySelectorAll('.content img').forEach(function (img) {
|
|
var width = img.getAttribute('width');
|
|
if (!width || width >= 300) {
|
|
img.setAttribute('data-action', 'zoom');
|
|
}
|
|
});
|