($element, className)
| 6904 | |
| 6905 | |
| 6906 | function safeAddClass($element, className) { |
| 6907 | try { |
| 6908 | $element.addClass(className); |
| 6909 | } catch (e) { |
| 6910 | // ignore, since it means that we are trying to set class on |
| 6911 | // SVG element, where class name is read-only. |
| 6912 | } |
| 6913 | } |
| 6914 | |
| 6915 | |
| 6916 | var startSymbol = $interpolate.startSymbol(), |
no outgoing calls
no test coverage detected