Sha256: bbcee226754838b440de1c990032b1b43023ae64ba892da243e0914af718a3b2
Contents?: true
Size: 812 Bytes
Versions: 158
Compression:
Stored size: 812 Bytes
Contents
module ActionView module Helpers module RecordIdentificationHelper # See ActionController::RecordIdentifier.partial_path -- this is just a delegate to that for convenient access in the view. def partial_path(*args, &block) ActionController::RecordIdentifier.partial_path(*args, &block) end # See ActionController::RecordIdentifier.dom_class -- this is just a delegate to that for convenient access in the view. def dom_class(*args, &block) ActionController::RecordIdentifier.dom_class(*args, &block) end # See ActionController::RecordIdentifier.dom_id -- this is just a delegate to that for convenient access in the view. def dom_id(*args, &block) ActionController::RecordIdentifier.dom_id(*args, &block) end end end end
Version data entries
158 entries across 155 versions & 20 rubygems