added functionality on the hide button in list preferences

This commit is contained in:
Azlen Elza 2013-07-11 16:06:13 -07:00
Родитель f198c9dd43
Коммит 61a66b3593
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -485,3 +485,10 @@ document.querySelector(".clock-footer .legend-toggle").addEventListener("click",
var controlsSection = document.querySelector(".clock-footer .legend-controls");
toggleLegendSection(event.target,controlsSection);
});
/* for List -------------------- */
document.querySelector(".list-footer .legend-toggle").addEventListener("click", function(event){
var controlsSection = document.querySelector(".list-footer .legend-controls");
toggleLegendSection(event.target,controlsSection);
});