1
0
mirror of https://github.com/labstack/echo.git synced 2025-01-10 00:28:23 +02:00
echo/website/static/scripts/echo.js
Vishal Rana b6f754b2a2 Updated docs
Signed-off-by: Vishal Rana <vr@labstack.com>
2015-10-05 15:54:42 -07:00

11 lines
236 B
JavaScript

(function() {
var menu = document.querySelectorAll('.menu a');
for (var i = 0; i < menu.length; i++) {
var m = menu[i];
if (location.href === m.href) {
m.className += 'active';
}
}
})();