2015-07-15 15:04:45 +00:00
|
|
|
class PopupsController < ApplicationController
|
|
|
|
|
|
|
|
|
|
respond_to :html
|
|
|
|
|
|
|
|
|
|
def recording_controls
|
|
|
|
|
render :layout => "minimal"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def media_controls
|
|
|
|
|
render :layout => "minimal"
|
|
|
|
|
end
|
|
|
|
|
|
2015-08-30 10:00:00 +00:00
|
|
|
def how_to_use_video
|
|
|
|
|
render :layout => "minimal"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def configure_video
|
|
|
|
|
render :layout => "minimal"
|
|
|
|
|
end
|
|
|
|
|
|
2015-07-15 15:04:45 +00:00
|
|
|
def youtube_player
|
|
|
|
|
@video_id = params[:id]
|
|
|
|
|
render :layout => "minimal"
|
|
|
|
|
end
|
2015-10-08 02:12:26 +00:00
|
|
|
|
|
|
|
|
def video_upload
|
|
|
|
|
@recording_id = params[:recording_id]
|
|
|
|
|
gon.recording_id = @recording_id
|
|
|
|
|
render :layout => "minimal"
|
|
|
|
|
end
|
2015-07-15 15:04:45 +00:00
|
|
|
end
|