UNPKG

awesome-vue2-ace-editor

Version:

Ace (Ajax.org Cloud9 Editor) component for Vue2, may be the most perfect.

24 lines (21 loc) 604 B
// Stolen from StackOverflow. Find all </code><pre><code> // elements on the page and add the "prettyprint" style. If at least one // prettyprint element was found, call the Google Prettify prettyPrint() API. //http://sstatic.net/so/js/master.js?v=6523 function styleCode() { if (typeof disableStyleCode != "undefined") { return; } var a = false; $("pre code").parent().each(function() { if (!$(this).hasClass("prettyprint")) { $(this).addClass("prettyprint"); a = true } }); if (a) { prettyPrint() } }