// 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 or the MIT license // , 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]); }; }); });