Skip to content

Commit

Permalink
Fixed so dump in imagetools.html displays the HTML.
Browse files Browse the repository at this point in the history
  • Loading branch information
spocke committed Jun 25, 2015
1 parent c78674c commit 48c672a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/manual/imagetools.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@
}

function dump() {
console.log(tinymce.activeEditor.getContent());
var content = tinymce.activeEditor.getContent();

tinymce.$('#view').html(content);
console.log(content);
}
</script>
</head>
Expand All @@ -63,5 +66,7 @@
<input type="button" value="Upload" onclick="upload()" />
</form>

<div id="view"></div>

</body>
</html>

0 comments on commit 48c672a

Please sign in to comment.