mirror of
https://github.com/ent/ent.git
synced 2026-05-02 23:50:54 +03:00
Reviewed By: alexsn Differential Revision: D17074003 fbshipit-source-id: 7a0088f8eab37dab570eaace5fa836d70bb708ed
8 lines
235 B
JavaScript
8 lines
235 B
JavaScript
/* eslint-disable */
|
|
window.addEventListener('load', function() {
|
|
// add an id tag for images based on their alt attribute.
|
|
document.querySelectorAll('.container img').forEach(function(el) {
|
|
el.id = el.alt;
|
|
});
|
|
});
|