"opentech/git@code.librehq.com:ots/hypha.git" did not exist on "532231d46a09a933ef93421bcf5e4eee1fe1fe05"
Newer
Older
export default function generateTooltips(){
// get the submisttions titles
const titles = Array.prototype.slice.call(document.querySelectorAll('.js-title'));
// if the tile has been truncated...
titles.forEach(function(title){
if (title.textContent.indexOf('...') >= 0) {
addToolTip(title);
}
});
// ...add a tooltip class
function addToolTip(title){
title.classList.add('has-tooltip');
}
}