Fixes two fixed path names to images. Fixes #582.

git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@611 a4c988fc-2ded-0310-b66e-134b36920a42
This commit is contained in:
lrbalt 2007-10-06 13:19:06 +00:00
parent e32f890ea1
commit 765f51c44b
2 changed files with 3 additions and 3 deletions

View file

@ -100,7 +100,7 @@ $('todo_context_name').projectDefaultContextsMap = eval('(' + <%= @default_proje
<div class="submit_box">
<div class="widgets">
<button type="submit" class="positive" id="todo_new_action_submit">
<img src="/images/accept.png" alt=""/>
<%=image_tag("accept.png", :alt => "") %>
Add action
</button>
</div>

View file

@ -62,11 +62,11 @@ Event.observe($('<%= dom_id(@todo, 'context_name') %>'), "click", <%= dom_id(@to
<div class="submit_box">
<div class="widgets">
<button type="submit" class="positive" id="<%= dom_id(@todo, 'submit') %>" tabindex="15">
<img src="/images/accept.png" alt=""/>
<%=image_tag("accept.png", :alt => "") %>
Update
</button>
<a href="javascript:void(0);" onclick="Element.toggle('<%= dom_id(@todo, 'line') %>');Element.toggle('<%= dom_id(@todo, 'edit') %>');" class="negative">
<img src="/images/cancel.png" alt=""/>
<%=image_tag("cancel.png", :alt => "") %>
Cancel
</a>
</div>