Fix blocking Javascript
This commit is contained in:
parent
7014478d15
commit
4822793af9
@ -1,7 +1,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
|
|
||||||
<script src="{{ page.root }}static/script.js"></script>
|
|
||||||
<link rel="stylesheet" href="{{ page.root }}static/style.css">
|
<link rel="stylesheet" href="{{ page.root }}static/style.css">
|
||||||
|
<script async src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
|
||||||
|
<script async src="{{ page.root }}static/script.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,19 +1,30 @@
|
|||||||
// @license magnet:?xt=urn:btih:90dc5c0be029de84e523b9b3922520e79e0e6f08&dn=cc0.txt CC0
|
// @license magnet:?xt=urn:btih:90dc5c0be029de84e523b9b3922520e79e0e6f08&dn=cc0.txt CC0
|
||||||
// This script is licensed under CC0
|
// This script is licensed under CC0
|
||||||
|
|
||||||
$(function() {
|
(function() {
|
||||||
$("#printable").click(function() {
|
function setJQueryTrigger() {
|
||||||
$("body").addClass("printable");
|
if (window.$ == undefined) {
|
||||||
});
|
setTimeout(setJQueryTrigger, 70);
|
||||||
|
return;
|
||||||
return $("h2, h3, h4, h5, h6").each(function(i, el) {
|
|
||||||
var $el, icon, id;
|
|
||||||
$el = $(el);
|
|
||||||
id = $el.attr('id');
|
|
||||||
if (id) {
|
|
||||||
return $el.prepend($("<a />").addClass("header-link").attr("href", "#" + id).html("#"));
|
|
||||||
}
|
}
|
||||||
});
|
|
||||||
});
|
$(function() {
|
||||||
|
$("#printable").click(function() {
|
||||||
|
$("body").addClass("printable");
|
||||||
|
});
|
||||||
|
|
||||||
|
return $("h2, h3, h4, h5, h6").each(function(i, el) {
|
||||||
|
var $el, icon, id;
|
||||||
|
$el = $(el);
|
||||||
|
id = $el.attr('id');
|
||||||
|
if (id) {
|
||||||
|
return $el.prepend($("<a />").addClass("header-link").attr("href", "#" + id).html("#"));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
setJQueryTrigger();
|
||||||
|
})();
|
||||||
|
|
||||||
// @license-end
|
// @license-end
|
||||||
|
Loading…
Reference in New Issue
Block a user