Thomas Bruederli
2013-01-31 873ae9e9de2aba0f22f3669b1e1519a439d97b5c
Add work-around for IE <= 8 which doesn't support :last-child CSS selector
1 files modified
12 ■■■■■ changed files
skins/larry/includes/footer.html 12 ●●●●● patch | view | raw | blame | history
skins/larry/includes/footer.html
@@ -8,4 +8,16 @@
});
</script>
<!--[if lte IE 8]>
<script type="text/javascript">
// fix missing :last-child selectors
$(document).ready(function(){
    $('ul.treelist ul').each(function(i,ul){
        $('li:last-child', ul).css('border-bottom', 0);
    });
});
</script>
<![endif]-->