Changeset 701
- Timestamp:
- 01/28/07 02:11:47 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/ExtendedFileManager/extended-file-manager.js
r700 r701 86 86 87 87 // compress 'top right bottom left' syntax into one value if possible 88 outparam.param.f_border = shortSize(outparam. f_border);89 outparam.param.f_padding = shortSize(outparam. f_padding);90 outparam.param.f_margin = shortSize(outparam. f_margin);88 outparam.param.f_border = shortSize(outparam.param.f_border); 89 outparam.param.f_padding = shortSize(outparam.param.f_padding); 90 outparam.param.f_margin = shortSize(outparam.param.f_margin); 91 91 92 92 // convert rgb() calls to rgb hex 93 outparam.param.f_backgroundColor = convertToHex(outparam. f_backgroundColor);94 outparam.param.f_borderColor = convertToHex(outparam. f_borderColor);93 outparam.param.f_backgroundColor = convertToHex(outparam.param.f_backgroundColor); 94 outparam.param.f_borderColor = convertToHex(outparam.param.f_borderColor); 95 95 96 96 } … … 192 192 193 193 var editor = this; 194 var outparam = null;194 var outparam = {"editor" : this, param : null}; 195 195 if (typeof link == "undefined") { 196 196 link = this.getParentElement(); … … 218 218 return; 219 219 } 220 outparam = {220 outparam.param = { 221 221 f_href : '', 222 222 f_title : '', … … 226 226 }; 227 227 } else 228 outparam = {228 outparam.param = { 229 229 f_href : Xinha.is_ie ? link.href : link.getAttribute("href"), 230 230 f_title : link.title,
