class Blix::Rest::Controller

Public Instance Methods

asset_path(partial_path) click to toggle source
# File lib/blix/assets.rb, line 8
def asset_path(partial_path)
  AssetManager.asset_path(full_path(partial_path),mode_production?)
end
asset_tag(partial_path,opts={}) click to toggle source

make a complete html tag for an asset

# File lib/blix/assets.rb, line 13
def asset_tag(partial_path,opts={})
    AssetManager.asset_tag(full_path(partial_path),mode_production?,opts)
end