Show javascript message when disabled

This commit is contained in:
Keith Morrow 2015-06-11 22:04:11 -04:00
parent ab379d82d9
commit 46aa36bf14

View file

@ -35,6 +35,13 @@
transition: background-color 400ms ease-out;
}
.noscript {
color: white;
text-align: center;
vertical-align: middle;
margin: 0;
}
#pastearea h1:hover {
background-color: #313538;
-webkit-transition: background-color 100ms ease-in;
@ -345,6 +352,12 @@
<body>
<div class="modulecontent modulearea"></div>
<noscript class="noscript">
<h2>
Javascript is required to view and upload files.
</h2>
</noscript>
<div id="footer" class="footer">
<a href="https://github.com/Upload/Up1" target="_blank">Source Code</a>
-