when using <r:asset [name,id]="foo">bar/r:asset, there is breakage
This is fixed for me with the following modification to line 17 in lib/asset_tags.rb
16: tag 'asset' do |tag|
17: tag.locals.asset = find_asset unless tag.attr.empty?
to
16: tag 'asset' do |tag|
17: tag.locals.asset, options = asset_and_options(tag) unless tag.attr.empty?
... At least for me. I don't have a firm enough grasp on the code to know if there are any negatives to this fix.
when using <r:asset [name,id]="foo">bar/r:asset, there is breakage
This is fixed for me with the following modification to line 17 in lib/asset_tags.rb
to
... At least for me. I don't have a firm enough grasp on the code to know if there are any negatives to this fix.