Module: Bux::AssetsHelper

Defined in:
app/helpers/bux/assets_helper.rb

Overview

Includes either hosted or local style tags

Instance Method Summary collapse

Instance Method Details

#bux_asset_tagsObject



6
7
8
9
10
11
12
13
14
# File 'app/helpers/bux/assets_helper.rb', line 6

def bux_asset_tags
  if Bux.configuration.use_cdn
    stylesheet_link_tag('https://assets.bux.osu.edu/v1.5.x/css/bux-styles.min.css') +
      javascript_include_tag('https://assets.bux.osu.edu/v1.5.x/js/bux.min.js')
  else
    stylesheet_link_tag('bux/bux-styles.css') +
      javascript_include_tag('bux/bux.js')
  end
end