sogo/UI/WebServerResources/UIxColorPicker.js

10 lines
184 B
JavaScript
Raw Normal View History

function onLoadColorPicker(event) {
showColorPicker();
}
function onChooseColor(newColor) {
window.opener.onColorPickerChoice(newColor);
}
FastInit.addOnLoad(onLoadColorPicker);