Replacing latest prettifier hosted in repo with latest version at rawgit CDN. (#1120)

This commit is contained in:
Andrew n marshall
2017-05-22 12:09:23 -07:00
committed by GitHub
parent c53605fef4
commit 3840b3804f
6 changed files with 4 additions and 37 deletions

View File

@@ -875,7 +875,7 @@ FactoryUtils.injectCode = function(code, id) {
var pre = document.getElementById(id);
pre.textContent = code;
code = pre.textContent;
code = prettyPrintOne(code, 'js');
code = PR.prettyPrintOne(code, 'js');
pre.innerHTML = code;
};