git-svn-id: http://xe-core.googlecode.com/svn/trunk@1593 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-11 10:51:00 +00:00
parent 25c8999e50
commit ed735ce65f
64 changed files with 165 additions and 317 deletions

View file

@ -602,3 +602,23 @@ function editorDragStop(evt) {
editorDragObj.obj = null;
editorDragObj.id = '';
}
// Editor Option Button
function eOptionOver(obj) {
obj.style.marginTop='-21px';
obj.style.zIndex='99';
}
function eOptionOut(obj) {
obj.style.marginTop='0';
obj.style.zIndex='1';
}
function eOptionClick(obj) {
obj.style.marginTop='-42px';
obj.style.zIndex='99';
}
// Editor Info Close
function closeEditorInfo() {
xGetElementById('editorInfo').style.display='none';
}