Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 442 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 442 Bytes

Picker

This class is the basis for TimePicker, ColorPicker and DatePicker classes.

Screenshot

How to use

// A working demo has been included in the download.

new Picker(pick, {
	'onTrigger': function(e)
	{
		//e.stop();
		//log.innerHTML += 'onTrigger fired<br />';
	},
	'onHide': function()
	{
		log.innerHTML += 'onHide fired<br />';
	}
});