($element, className)
| 6826 | |
| 6827 | |
| 6828 | function safeAddClass($element, className) { |
| 6829 | try { |
| 6830 | $element.addClass(className); |
| 6831 | } catch (e) { |
| 6832 | // ignore, since it means that we are trying to set class on |
| 6833 | // SVG element, where class name is read-only. |
| 6834 | } |
| 6835 | } |
| 6836 | |
| 6837 | |
| 6838 | var startSymbol = $interpolate.startSymbol(), |
no outgoing calls
no test coverage detected