mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
9 lines
270 B
HTML
9 lines
270 B
HTML
<script>
|
|
var url = document.location.href;
|
|
var imageUrl = url.replace(/[/][^/]*$/, "/mozilla-16.png");
|
|
var viewSourceImageUrl = "view-source:" + imageUrl;
|
|
var html = "<iframe src='#url#'>".replace(/#url#/, viewSourceImageUrl);
|
|
document.write(html);
|
|
</script>
|
|
|