mirror of https://github.com/m-labs/artiq.git
15 lines
311 B
HTML
15 lines
311 B
HTML
|
{% extends "!layout.html" %}
|
||
|
|
||
|
{# since sphinx_rtd_theme moves scripts to the end, hook up WaveDrom again #}
|
||
|
{%- block footer %}
|
||
|
{{ super() }}
|
||
|
<script>(function(){
|
||
|
window.addEventListener(
|
||
|
"load",
|
||
|
(function(){ try {
|
||
|
WaveDrom.ProcessAll();
|
||
|
} catch(e) {} }),
|
||
|
false);
|
||
|
})();</script>
|
||
|
{% endblock %}
|