]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/static/playpen.js
mk: The beta channel produces things called 'beta'
[rust.git] / src / librustdoc / html / static / playpen.js
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 /*jslint browser: true, es5: true */
12 /*globals $: true, rootPath: true */
13
14 (function() {
15     if (window.playgroundUrl) {
16         $('pre.rust').hover(function() {
17             if (!$(this).attr('id')) { return; }
18             var id = '#' + $(this).attr('id').replace('rendered', 'raw');
19             var a = $('<a>').text('⇱').attr('class', 'test-arrow');
20             var code = $(id).text();
21             a.attr('href', window.playgroundUrl + '?code=' +
22                            encodeURIComponent(code));
23             a.attr('target', '_blank');
24             $(this).append(a);
25         }, function() {
26             $(this).find('a.test-arrow').remove();
27         });
28     }
29 }());
30