2013-02-11 05:34:14 -06:00
|
|
|
module CommonHelper
|
2014-01-25 18:42:25 -06:00
|
|
|
def render_google_universal_analytics_code
|
2014-08-18 01:42:48 -05:00
|
|
|
if Rails.env.production? && SiteSetting.ga_universal_tracking_code.present?
|
2014-01-25 18:42:25 -06:00
|
|
|
render partial: "common/google_universal_analytics"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-11 05:34:14 -06:00
|
|
|
def render_google_analytics_code
|
2014-08-18 01:42:48 -05:00
|
|
|
if Rails.env.production? && SiteSetting.ga_tracking_code.present?
|
2013-03-23 10:02:59 -05:00
|
|
|
render partial: "common/google_analytics"
|
2013-02-11 05:34:14 -06:00
|
|
|
end
|
|
|
|
end
|
2013-03-23 10:02:59 -05:00
|
|
|
end
|