($element, className)
| 7301 | |
| 7302 | |
| 7303 | function safeAddClass($element, className) { |
| 7304 | try { |
| 7305 | $element.addClass(className); |
| 7306 | } catch (e) { |
| 7307 | // ignore, since it means that we are trying to set class on |
| 7308 | // SVG element, where class name is read-only. |
| 7309 | } |
| 7310 | } |
| 7311 | |
| 7312 | |
| 7313 | var startSymbol = $interpolate.startSymbol(), |
no outgoing calls
no test coverage detected