($element, className)
| 7976 | } |
| 7977 | |
| 7978 | function safeAddClass($element, className) { |
| 7979 | try { |
| 7980 | $element.addClass(className); |
| 7981 | } catch (e) { |
| 7982 | // ignore, since it means that we are trying to set class on |
| 7983 | // SVG element, where class name is read-only. |
| 7984 | } |
| 7985 | } |
| 7986 | |
| 7987 | |
| 7988 | var startSymbol = $interpolate.startSymbol(), |
no outgoing calls
no test coverage detected