handle contribution for now-unused swf
This commit is contained in:
parent
98d908d33c
commit
9fc24a2eab
2 changed files with 12 additions and 5 deletions
|
@ -13,11 +13,15 @@ module ContributionHelper
|
||||||
end
|
end
|
||||||
|
|
||||||
def contributed_item(item, adverbial)
|
def contributed_item(item, adverbial)
|
||||||
output do |html|
|
if item
|
||||||
html << 'the'
|
output do |html|
|
||||||
html << link_to(item.name, item, :class => 'contributed-name')
|
html << 'the'
|
||||||
html << adverbial
|
html << link_to(item.name, item, :class => 'contributed-name')
|
||||||
html << image_tag(item.thumbnail_url)
|
html << adverbial
|
||||||
|
html << image_tag(item.thumbnail_url)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
"data for an item that has since been updated"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
3
config/environments/remote_development.rb
Normal file
3
config/environments/remote_development.rb
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Mirror of the development environment. Designed to allow the ability to plug
|
||||||
|
# in the production database, while still behaving like development.
|
||||||
|
require Rails.root.join('config', 'environments', 'development')
|
Loading…
Reference in a new issue