()
| 271 | |
| 272 | // in here we are undoing the converts used elsewhere to prevent the < > and & being displayed when they shouldn't in the code. |
| 273 | var _compileHtml = function(){ |
| 274 | if(_isContentEditable) { |
| 275 | return element[0].innerHTML; |
| 276 | } |
| 277 | if(_isInputFriendly) { |
| 278 | return element.val(); |
| 279 | } |
| 280 | throw ('textAngular Error: attempting to update non-editable taBind'); |
| 281 | }; |
| 282 | |
| 283 | var selectorClickHandler = function(event){ |
| 284 | // emit the element-select event, pass the element |
no outgoing calls
no test coverage detected