When the bar is collapsed the tooltip displays "close" instead of open.

Also as a feature request could we have a form to customize the tooltips texts?

Comments

sunildhimal’s picture

Assigned: Unassigned » sunildhimal
Status: Active » Needs review

Here's the quick fix :)
To fix this issue, make following changes in js/script.js

Line 17: $('.bar-btn').removeClass('close').addClass('open');
Change to: $('.bar-btn').removeClass('close').addClass('open').attr("title","Open").attr("alt","Open");
Line 32: $('.bar-btn').removeClass('open');
Change to: $('.bar-btn').removeClass('open').addClass('close').attr("title","Close").attr("alt","Close");