Sha256: b135af9cd06ff43cc968b170b37512cb5c86cae02bbd505643b4d136e1c05445

Contents?: true

Size: 644 Bytes

Versions: 3

Compression:

Stored size: 644 Bytes

Contents

module FacebookSocialPlugins::Plugin
	class LiveStream < Social
		def initialize options = {}
			super
		end

		def plugin_class
			'fb-live-stream'
		end

		# event-app-id - the app id for the event
		# width - the width of the plugin in pixels. Minimum recommended width: 400px.
		# height - the height of the plugin in pixels. Minimum recommended height: 200px.
		# always-post-to-friends - whether to always post to friend, default: false
		def attributes
			super.merge(:'via-url' => :string, :xid => :string, :'event-app-id' => :string, 
				:height => :integer, :'always-post-to-friends' => :boolean, :width => :integer)
		end
	end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
facebook-social_plugins-0.2.2 lib/facebook-social_plugins/plugin/live_stream.rb
facebook-social_plugins-0.2.1 lib/facebook-social_plugins/plugin/live_stream.rb
facebook-social_plugins-0.2.0 lib/facebook-social_plugins/plugin/live_stream.rb