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
|
|
|
|
|
end
|