1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-03-11 07:08:25 +00:00

Merge pull request 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

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>