Merge pull request #439 from fermionic/frost-fix-archive-widget

another javascript that needed $ --> $j
This commit is contained in:
fermionic 2012-08-16 20:52:50 -07:00
commit 9ac2231a62
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<div id="datebrowse-sidebar" class="widget">
<h3>$title</h3>
<script>function dateSubmit(dateurl) { window.location.href = dateurl; } </script>
<select id="posted-date-selector" name="posted-date-select" onchange="dateSubmit($j(this).val());" size="$size">
{{ for $dates as $d }}
<option value="$url/$d.1/$d.2" >$d.0</option>
{{ endfor }}
</select>
</div>