diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/components/angular-bootstrap/bootstrap-prettify.js | 7 | ||||
| -rw-r--r-- | docs/src/templates/index.html | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/docs/components/angular-bootstrap/bootstrap-prettify.js b/docs/components/angular-bootstrap/bootstrap-prettify.js index 9d8a7d23..169d232b 100644 --- a/docs/components/angular-bootstrap/bootstrap-prettify.js +++ b/docs/components/angular-bootstrap/bootstrap-prettify.js @@ -102,7 +102,12 @@ directive.prettyprint = ['reindentCode', function(reindentCode) { //ensure that angular won't compile {{ curly }} values html = html.replace(/\{\{/g, '<span>{{</span>') .replace(/\}\}/g, '<span>}}</span>'); - element.html(window.prettyPrintOne(reindentCode(html), undefined, true)); + if (window.RUNNING_IN_NG_TEST_RUNNER) { + element.html(html); + } + else { + element.html(window.prettyPrintOne(reindentCode(html), undefined, true)); + } } }; }]; diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html index 1deb08e1..4807019a 100644 --- a/docs/src/templates/index.html +++ b/docs/src/templates/index.html @@ -54,8 +54,8 @@ addTag('script', {src: path('angular-animate.js') }, sync); addTag('script', {src: 'components/angular-bootstrap.js' }, sync); addTag('script', {src: 'components/angular-bootstrap-prettify.js' }, sync); - addTag('script', {src: 'components/google-code-prettify.js' }, sync); if (!window.RUNNING_IN_NG_TEST_RUNNER) { + addTag('script', {src: 'components/google-code-prettify.js' }, sync); addTag('script', {src: 'components/' + (debug ? 'lunr.js' : 'lunr.min.js') }, sync); } addTag('script', {src: 'components/marked.js' }, sync); |
