summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--css/sally.css2
-rw-r--r--index.html2
-rw-r--r--js/clipboard.js4
3 files changed, 4 insertions, 4 deletions
diff --git a/css/sally.css b/css/sally.css
index 16cd858..f4d28d5 100644
--- a/css/sally.css
+++ b/css/sally.css
@@ -39,7 +39,7 @@ a:link, a:visited {text-decoration: none; color: #3b3740}
white-space:pre-wrap;
word-wrap: break-word;
}
-#gallery_wrapper {
+#gallery_rapper {
display: inline
}
.block {
diff --git a/index.html b/index.html
index 26263b0..900463b 100644
--- a/index.html
+++ b/index.html
@@ -59,7 +59,7 @@
<button id="import_button">import colorcode</button>
<button id="import_html">import sally</button>
</span>
- <div id="gallery_wrapper">
+ <div id="gallery_rapper">
<input id="username_input" type="text" placeholder="username">
<input id="upload_input" type="text" placeholder="uploaded url">
<button id="export_button">export</button>
diff --git a/js/clipboard.js b/js/clipboard.js
index d6e5c4e..29c4ecc 100644
--- a/js/clipboard.js
+++ b/js/clipboard.js
@@ -41,7 +41,7 @@ var clipboard = (function () {
import_mode: function () {
focus()
clipboard.importing = true
- gallery_wrapper.style.display = 'none'
+ gallery_rapper.style.display = 'none'
format_el.style.display = 'none'
import_buttons.style.display = "inline"
import_textarea.value = ""
@@ -51,7 +51,7 @@ var clipboard = (function () {
clipboard.importing = false
import_buttons.style.display = "none"
format_el.style.display = 'inline'
- gallery_wrapper.style.display = 'inline'
+ gallery_rapper.style.display = 'inline'
clipboard.export_data()
},