diff --git a/docs/example-widget-output.html b/docs/example-widget-output.html index cb35144b..741e79aa 100644 --- a/docs/example-widget-output.html +++ b/docs/example-widget-output.html @@ -56,6 +56,10 @@ .output-type { width: 80px; } + pre { + /* override bootstrap setting */ + overflow-y: hidden !important; + } diff --git a/docs/js/docs.js b/docs/js/docs.js index 17cfc9f6..1bb5e5a1 100644 --- a/docs/js/docs.js +++ b/docs/js/docs.js @@ -29,7 +29,7 @@ } // apply to already pre-formatted blocks to add
for IE - $('pre:not(.mod)').each(function(){ + $('pre.prettyprint:not(.mod)').each(function(){ $t = $(this); $t.html( cleanupCode( $t.html() ) ); });