diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-02-25 17:24:24 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-02-25 17:24:24 (GMT) |
commit | 452bfcc222a5af5603b796448db87e35812d8505 (patch) | |
tree | a6aecfcd758c67b726a5e41fff98e63a8112f454 | |
parent | 94e5c933edc0576316493a859ff734dc028d0bb9 (diff) | |
download | cpython-452bfcc222a5af5603b796448db87e35812d8505.zip cpython-452bfcc222a5af5603b796448db87e35812d8505.tar.gz cpython-452bfcc222a5af5603b796448db87e35812d8505.tar.bz2 |
#14114: don't include copybutton.js in the htmlhelp output.
-rw-r--r-- | Doc/tools/sphinxext/layout.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/sphinxext/layout.html b/Doc/tools/sphinxext/layout.html index 8659ef0..d4bb105 100644 --- a/Doc/tools/sphinxext/layout.html +++ b/Doc/tools/sphinxext/layout.html @@ -6,7 +6,7 @@ {% endblock %} {% block extrahead %} <link rel="shortcut icon" type="image/png" href="{{ pathto('_static/py.png', 1) }}" /> - <script type="text/javascript" src="{{ pathto('_static/copybutton.js', 1) }}"></script> + {% if not embedded %}<script type="text/javascript" src="{{ pathto('_static/copybutton.js', 1) }}"></script>{% endif %} {{ super() }} {% endblock %} {% block footer %} |