Sha256: 2dad0f6836617c6e84e6c43c7e2616f5c9440a31f53b480bac697325da31f6ca

Contents?: true

Size: 505 Bytes

Versions: 1

Compression:

Stored size: 505 Bytes

Contents

module Blacklight::Marc
  module Catalog
    def librarian_view
      @response, @document = get_solr_response_for_doc_id params[:id]

      respond_to do |format|
        format.html
        format.js { render :layout => false }
      end
    end

    # grabs a bunch of documents to export to endnote
    def endnote
      @response, @documents = get_solr_response_for_document_ids(params[:id])
      respond_to do |format|
        format.endnote { render :layout => false }
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
blacklight-marc-5.5.0 lib/blacklight/marc/catalog.rb