Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.28 KB

timeline_plugin.md

File metadata and controls

34 lines (25 loc) · 1.28 KB

Time line button plugin example

es.upv.paella.frameControlPlugin

A time line button plugin is an special type of pop up button plugin that presents a pop up that have the same width the playback bar. You can use this kind of plugin to present contents that are related with the time line. In this example you can see some code extracted from the frame control plugin. This plugin shows the presentation slides above.

See the button pugin and the pop up button plugin for more info.

Creation

To create a time line button plugin, you can do it in the same way as the button plugin or the pop up button plugin, specifying paella.ButtonPlugin.type.timeLineButton as button type:

Class ("paella.plugins.FrameControlPlugin",paella.ButtonPlugin,{
	...
	getButtonType:function() { return paella.ButtonPlugin.type.timeLineButton; },

Pop up content

To specify the pop up content you only need to overwrite the buildContent() function, as you do it with a regular pop up button plugin

	buildContent:function(domElement) {
		
		...

		domElement.appendChild(this.navButtons.left);
		domElement.appendChild(container);
		container.appendChild(content);
		domElement.appendChild(this.navButtons.right);

		...
	},