Class: StaticController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/static_controller.rb

Instance Method Summary collapse

Instance Method Details

#mendeleyObject



12
13
14
15
16
17
# File 'app/controllers/static_controller.rb', line 12

def mendeley
  respond_to do |format|
    format.html
    format.js { render layout: false }
  end
end

#zoteroObject



5
6
7
8
9
10
# File 'app/controllers/static_controller.rb', line 5

def zotero
  respond_to do |format|
    format.html
    format.js { render layout: false }
  end
end