diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-06-07 10:53:22 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-07 10:53:22 -0700 |
| commit | 3688c1d0ca854cd295f92680ef836bf5fec4271e (patch) | |
| tree | 735e1ce7700bca72a50a00b5d57396c193802a50 | |
| parent | 8e9e484d7089590ce63bfe21723d7ee0c50be8f4 (diff) | |
| download | rust-3688c1d0ca854cd295f92680ef836bf5fec4271e.tar.gz rust-3688c1d0ca854cd295f92680ef836bf5fec4271e.zip | |
rustdoc: More selectively remove execute links
Closes #14723
| -rw-r--r-- | src/librustdoc/html/static/playpen.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/playpen.js b/src/librustdoc/html/static/playpen.js index 5d2fe9c2166..473a20086ed 100644 --- a/src/librustdoc/html/static/playpen.js +++ b/src/librustdoc/html/static/playpen.js @@ -22,7 +22,7 @@ a.attr('target', '_blank'); $(this).append(a); }, function() { - $(this).find('a').remove(); + $(this).find('a.test-arrow').remove(); }); } }()); |
