Merge pull request #3809 from rabuzarus/20171018_-_fix_posted_date_widget
Bugfix: useless li end tag in posted_date_widget.tpl
This commit is contained in:
commit
b78996416c
|
@ -5,18 +5,21 @@ function showHideDates() {
|
|||
$('#posted-date-dropdown').hide();
|
||||
$('#posted-date-collapse').html(window.showMore);
|
||||
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$('#posted-date-dropdown').show();
|
||||
$('#posted-date-collapse').html(window.showFewer);
|
||||
}
|
||||
}
|
||||
|
||||
function dateSubmit(dateurl) {
|
||||
window.location.href = dateurl;
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
<div id="datebrowse-sidebar" class="widget">
|
||||
<h3>{{$title}}</h3>
|
||||
<script>function dateSubmit(dateurl) { window.location.href = dateurl; } </script>
|
||||
<ul id="posted-date-selector" class="datebrowse-ul">
|
||||
{{foreach $dates as $y => $arr}}
|
||||
{{if $y == $cutoff_year}}
|
||||
|
@ -31,7 +34,7 @@ function showHideDates() {
|
|||
<ul class="posted-date-selector-months datebrowse-ul">
|
||||
{{foreach $arr as $d}}
|
||||
<li class="tool">
|
||||
<a class="datebrowse-link" href="#" onclick="dateSubmit('{{$url}}/{{$d.1}}/{{$d.2}}'); return false;">{{$d.0}}</a></li>
|
||||
<a class="datebrowse-link" href="#" onclick="dateSubmit('{{$url}}/{{$d.1}}/{{$d.2}}'); return false;">{{$d.0}}</a>
|
||||
</li>
|
||||
{{/foreach}}
|
||||
</ul>
|
||||
|
|
Loading…
Reference in a new issue