This commit is contained in:
John Bintz 2013-01-17 11:08:52 -05:00
parent 5cda866980
commit fea104d73f
1 changed files with 8 additions and 4 deletions

View File

@ -20,11 +20,15 @@ class FileFieldInput < Formtastic::Inputs::FileInput
end end
def existing_file_info def existing_file_info
if @url = builder.object.send(method).url result = ''
preview << remove_checkbox << url_display
else if source = builder.object.send(method)
'' if @url = source.url
result = preview << remove_checkbox << url_display
end
end end
result
end end
def div_wrapper def div_wrapper