diff options
author | 2015-06-29 20:16:15 +0000 | |
---|---|---|
committer | 2015-06-29 20:16:15 +0000 | |
commit | 64106c4d3d4ddba8c7bc2af75376e6d3d3d75601 (patch) | |
tree | 8c64d6e8be006486d975a651505fbbde61365cd6 /playpen.js | |
download | irsc-gh-pages.tar.gz irsc-gh-pages.tar.xz irsc-gh-pages.zip |
Update documentationgh-pages
Diffstat (limited to 'playpen.js')
-rw-r--r-- | playpen.js | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/playpen.js b/playpen.js new file mode 100644 index 0000000..ff947d9 --- /dev/null +++ b/playpen.js @@ -0,0 +1,47 @@ +// Copyright 2014-2015 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +/*jslint browser: true, es5: true */ +/*globals $: true, rootPath: true */ + +document.addEventListener('DOMContentLoaded', function() { + if (!window.playgroundUrl) { + return; + } + + var elements = document.querySelectorAll('pre.rust'); + + Array.prototype.forEach.call(elements, function(el) { + el.onmouseover = function(e) { + if (el.contains(e.relatedTarget)) { + return; + } + + var a = document.createElement('a'); + a.textContent = '⇱'; + a.setAttribute('class', 'test-arrow'); + + var code = el.previousElementSibling.textContent; + a.setAttribute('href', window.playgroundUrl + '?code=' + + encodeURIComponent(code)); + a.setAttribute('target', '_blank'); + + el.appendChild(a); + }; + + el.onmouseout = function(e) { + if (el.contains(e.relatedTarget)) { + return; + } + + el.removeChild(el.querySelectorAll('a.test-arrow')[0]); + }; + }); +}); |