aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2014-03-30 15:10:19 -0400
committerTeddy Wing2014-03-30 15:10:37 -0400
commitdae3bcc4249c0c98f19df2a3cab671773942f887 (patch)
treeb7cb258d02cd782f63ce54d72acd16ee7ea048bb
parent859fc43f1156e2adfbe1580de7a9ba5728818760 (diff)
downloadchrome-copy-urls-from-all-tabs-dae3bcc4249c0c98f19df2a3cab671773942f887.tar.bz2
Options: update status text on save
Move to the right side of the save button and show it for a longer amount of time.
-rw-r--r--options.html2
-rw-r--r--options.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/options.html b/options.html
index 47bd92f..8cbf895 100644
--- a/options.html
+++ b/options.html
@@ -38,8 +38,8 @@
</div>
<div class="form-element">
- <div id="status"></div>
<button id="save">Save</button>
+ <span id="status"></span>
</div>
</div>
</div>
diff --git a/options.js b/options.js
index 23bb4c5..b1d1192 100644
--- a/options.js
+++ b/options.js
@@ -11,7 +11,7 @@ function save_options() {
status.textContent = 'Options saved.';
setTimeout(function() {
status.textContent = '';
- }, 750);
+ }, 1000);
});
}