Method: Dugway::Filters::UrlFilters#theme_js_url
- Defined in:
- lib/dugway/liquid/filters/url_filters.rb
#theme_js_url(name) ⇒ Object
27 28 29 30 31 32 33 34 35 |
# File 'lib/dugway/liquid/filters/url_filters.rb', line 27 def theme_js_url(name) if name.is_a?(Drops::ThemeDrop) '/theme.js' elsif name == 'api' 'http://cache0.bigcartel.com/api/1/api.usd.js' else name end end |