Skip to content
Snippets Groups Projects
Commit 7e35f03a authored by Marijn Haverbeke's avatar Marijn Haverbeke
Browse files

[runmode addon] Treat everything with an appendChild property as a DOM output node

Closes #3703
parent 188ae75e
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ CodeMirror.runMode = function(string, modespec, callback, options) {
var ie = /MSIE \d/.test(navigator.userAgent);
var ie_lt9 = ie && (document.documentMode == null || document.documentMode < 9);
if (callback.nodeType == 1) {
if (callback.appendChild) {
var tabSize = (options && options.tabSize) || CodeMirror.defaults.tabSize;
var node = callback, col = 0;
node.innerHTML = "";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment