Skip to content

Commit

Permalink
refs #26711 add mouse cursor to default zoom button (hidden function)
Browse files Browse the repository at this point in the history
  • Loading branch information
kanu committed Nov 12, 2011
1 parent c3a9a4c commit d59e041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ganttcalendar/templates/gantt.html
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@
<input py:when="zoom &gt; 1" type="image" ACCESSKEY="I" onclick="form.zoom.value = ${zoom-1};" src="${href.chrome('tc/img/zoom_in.png')}" alt="${_('Zoom In')}"/>
<input py:otherwise="" type="image" disabled="disabled" src="${href.chrome('tc/img/zoom_in_g.png')}"/>
</py:choose>
<label ACCESSKEY="N" onclick="form.zoom.value = ${normal}; form.submit();">${zoom}</label>
<label style="cursor: pointer;" ACCESSKEY="N" onclick="form.zoom.value = ${normal}; form.submit();">${zoom}</label>
<py:choose>
<input py:when="zoom &lt; 6" type="image" ACCESSKEY="K" onclick="form.zoom.value = ${zoom+1};" src="${href.chrome('tc/img/zoom_out.png')}" alt="${_('Zoom Out')}"/>
<input py:otherwise="" type="image" disabled="disabled" src="${href.chrome('tc/img/zoom_out_g.png')}"/>
Expand Down

0 comments on commit d59e041

Please sign in to comment.