jam-cloud/web/app/controllers/popups_controller.rb

25 lines
405 B
Ruby

class PopupsController < ApplicationController
respond_to :html
def recording_controls
render :layout => "minimal"
end
def media_controls
render :layout => "minimal"
end
def how_to_use_video
render :layout => "minimal"
end
def configure_video
render :layout => "minimal"
end
def youtube_player
@video_id = params[:id]
render :layout => "minimal"
end
end