diff options
author | Andrew Gerrand <adg@golang.org> | 2013-09-17 17:14:57 +1000 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2013-09-17 17:14:57 +1000 |
commit | 7b08321066f219dca44c9447fd63d32cf05ff733 (patch) | |
tree | 6630df33f0347125513937c1a283ea9a2acda991 /template | |
parent | 18e34e7ae7fa717b074f7fad0fed540222faf43c (diff) |
go.blog: move blog-specific JavaScript into root template
Also update playground JavaScripts to the latest version.
This will make it easier for us to switch to godoc's static assets down
the line.
R=r, dsymonds
CC=golang-dev
https://golang.org/cl/13412049
Diffstat (limited to 'template')
-rw-r--r-- | template/root.tmpl | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/template/root.tmpl b/template/root.tmpl index 9c99ac6..e5b5f81 100644 --- a/template/root.tmpl +++ b/template/root.tmpl @@ -86,7 +86,35 @@ <script src="/static/jquery.js"></script> <script src="/static/play/playground.js"></script> <script src="/static/play/play.js"></script> -<script src="/static/script.js"></script> +<script> +$(function() { + // Insert line numbers for all playground elements. + $('.playground').each(function() { + var $spans = $(this).find('> pre > span'); + + // Compute width of number column (including trailing space). + var max = 0; + $spans.each(function() { + var n = $(this).attr('num')*1; + if (n > max) max = n; + }); + var width = 2; + while (max > 10) { + max = max / 10; + width++; + } + + // Insert line numbers with space padding. + $spans.each(function() { + var n = $(this).attr('num')+' '; + while (n.length < width) n = ' '+n; + $('<span class="number">').text(n).insertBefore(this); + }); + }); + + initPlayground(new HTTPTransport()); +}); +</script> </html> {{end}} |