Revert "Move dependency drop target into image"

We decided that the small drop target was harder to hit, and the
justifcation for the change wasn't worth it.

This reverts commit ec68e04f27.

Conflicts:

	app/helpers/todos_helper.rb
	public/javascripts/application.js
	public/stylesheets/standard.css
This commit is contained in:
Eric Allen 2010-05-09 18:57:56 -04:00
parent fa98c0865e
commit 86d7724b75
7 changed files with 7 additions and 370 deletions

View file

@ -119,10 +119,8 @@ module TodosHelper
def grip_span
unless @todo.completed?
image_tag('grip.png', :width => '7', :height => '16', :border => '0',
:title => 'Drag onto another action to make it depend on that action',
:class => 'grip') +
image_tag('blank.png', :width => 16, :height => 16, :border => 0,
:title => "Drop an action to make it depend on this action", :class => 'successor_target drop_target')
:title => 'Drag onto another action to make it depend on that action',
:class => 'grip')
end
end