($element, className)
| 7725 | |
| 7726 | |
| 7727 | function safeAddClass($element, className) { |
| 7728 | try { |
| 7729 | $element.addClass(className); |
| 7730 | } catch (e) { |
| 7731 | // ignore, since it means that we are trying to set class on |
| 7732 | // SVG element, where class name is read-only. |
| 7733 | } |
| 7734 | } |
| 7735 | |
| 7736 | |
| 7737 | var startSymbol = $interpolate.startSymbol(), |
no outgoing calls
no test coverage detected