projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
9b8d878f2c999724bf0575c42bba052a6d0d1582
[rails.git]
/
app
/
controllers
/
export_controller.rb
1
class ExportController < ApplicationController
2
def start
3
render :update do |page|
4
page.replace_html :sidebar_title, 'Export'
5
page.replace_html :sidebar_content, :partial => 'start'
6
page.call "openSidebar"
7
end
8
end
9
end