summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/assets/css/css.css11
-rw-r--r--public/assets/js/nav.js2
-rw-r--r--public/index.html5
3 files changed, 3 insertions, 15 deletions
diff --git a/public/assets/css/css.css b/public/assets/css/css.css
index aa61167..b5cc410 100644
--- a/public/assets/css/css.css
+++ b/public/assets/css/css.css
@@ -6,15 +6,6 @@ body {
font-family: sans-serif;
line-height: 1;
}
-#luckyimage img {
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 1;
- display: block;
-}
#topnav {
height: 23px;
min-width: 500px;
@@ -50,7 +41,7 @@ a:visited {
color: blue;
}
-#luckyimage {
+#image {
position: fixed;
height: 100%;
width: 100%;
diff --git a/public/assets/js/nav.js b/public/assets/js/nav.js
index bfddc2c..c768b51 100644
--- a/public/assets/js/nav.js
+++ b/public/assets/js/nav.js
@@ -16,7 +16,7 @@ var NavView = View.extend({
this.id = -1
this.$pip = this.$("#pip")
this.$pip_img = this.$("#pip img")
- this.$image = this.$("#luckyimage")
+ this.$image = this.$("#image")
$(window).on("keydown", this.keydown.bind(this))
$(document).ajaxError(function(){
diff --git a/public/index.html b/public/index.html
index 47cb085..b02aae8 100644
--- a/public/index.html
+++ b/public/index.html
@@ -8,8 +8,7 @@
</head>
<body>
-<div id="luckyimage"></div>
-
+<div id="image"></div>
<div id="droparea"></div>
<div id="mobile_nav">
@@ -22,8 +21,6 @@
<div class="spinner"></div>
</body>
-
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js'></script>
<script src='/p/assets/js/app.min.js'></script>
-
</html>