(cm)
| 130 | } |
| 131 | |
| 132 | function autoCloseSlash(cm) { |
| 133 | if (cm.getOption("disableInput")) return CodeMirror.Pass; |
| 134 | return autoCloseCurrent(cm, true); |
| 135 | } |
| 136 | |
| 137 | CodeMirror.commands.closeTag = function(cm) { return autoCloseCurrent(cm); }; |
| 138 |
no test coverage detected