forked from OpenNeo/impress
remove campaign banner from most pages
This commit is contained in:
parent
df62e3540f
commit
70cf262387
2 changed files with 15 additions and 12 deletions
|
@ -14,7 +14,9 @@ module ApplicationHelper
|
|||
end
|
||||
end
|
||||
|
||||
def campaign_progress(&block)
|
||||
CAMPAIGN_ACTIVE = false
|
||||
def campaign_progress(options={}, &block)
|
||||
if CAMPAIGN_ACTIVE || options[:always]
|
||||
include_campaign_progress_requirements
|
||||
|
||||
if block_given?
|
||||
|
@ -28,6 +30,7 @@ module ApplicationHelper
|
|||
content_tag(:div, content, :class => 'campaign-progress-label')
|
||||
content_tag(:div, html, :class => 'campaign-progress-wrapper')
|
||||
end
|
||||
end
|
||||
|
||||
def canonical_path(resource)
|
||||
content_for :meta, tag(:link, :rel => 'canonical', :href => url_for(resource))
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
- title "Support Dress to Impress"
|
||||
%h2 Thank you so much for all your help. We made it!
|
||||
|
||||
= campaign_progress do
|
||||
= campaign_progress(:always => true) do
|
||||
We've received
|
||||
= surround '$', ',' do
|
||||
%span.campaign-raised
|
||||
|
|
Loading…
Reference in a new issue