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

17 lines
282 B
Ruby

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