X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/docs/app/Syntax.js diff --git a/docs/app/Syntax.js b/docs/app/Syntax.js deleted file mode 100644 index 0ad38cdf..00000000 --- a/docs/app/Syntax.js +++ /dev/null @@ -1,20 +0,0 @@ -/** - * Utility for performing syntax highlighting. - */ -Ext.define("Docs.Syntax", { - singleton: true, - - /** - * Marks all code blocks with "prettyprint" class and then calls - * the prettify library function to highlight them. - * - * @param {HTMLElement/Ext.core.Element} root HTML element inside - * which to perform the highlighting. - */ - highlight: function(root) { - Ext.Array.forEach(Ext.query("pre > code", root.dom || root), function(el) { - Ext.get(el).addCls("prettyprint"); - }); - prettyPrint(); - } -});