Update patch-1

This commit is contained in:
Vasili Kachalko 2012-07-06 15:31:29 +03:00
parent fe60ddf9f7
commit a731551ca0
1 changed files with 1 additions and 1 deletions

View File

@ -467,7 +467,7 @@ instance, if you want to wrap date/time/datetime in a div, you can do:
# app/inputs/date_time_input.rb
class DateTimeInput < SimpleForm::Inputs::DateTimeInput
def input
content_tag(:div, super)
template.content_tag(:div, super)
end
end
```