(elem)
| 3797 | |
| 3798 | // 检查元素是否有 background-color: 内联样式 |
| 3799 | function checkElemFn(elem) { |
| 3800 | var cssText; |
| 3801 | if (elem && elem.style && elem.style.cssText != null) { |
| 3802 | cssText = elem.style.cssText; |
| 3803 | if (cssText && cssText.indexOf('background-color:') >= 0) { |
| 3804 | return true; |
| 3805 | } |
| 3806 | } |
| 3807 | return false; |
| 3808 | } |
| 3809 | |
| 3810 | // 创建 menu 对象 |
| 3811 | var menu = new E.Menu({ |
nothing calls this directly
no outgoing calls
no test coverage detected