diff options
| author | Teddy Wing | 2014-03-30 15:10:19 -0400 |
|---|---|---|
| committer | Teddy Wing | 2014-03-30 15:10:37 -0400 |
| commit | dae3bcc4249c0c98f19df2a3cab671773942f887 (patch) | |
| tree | b7cb258d02cd782f63ce54d72acd16ee7ea048bb | |
| parent | 859fc43f1156e2adfbe1580de7a9ba5728818760 (diff) | |
| download | chrome-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.html | 2 | ||||
| -rw-r--r-- | options.js | 2 |
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> @@ -11,7 +11,7 @@ function save_options() { status.textContent = 'Options saved.'; setTimeout(function() { status.textContent = ''; - }, 750); + }, 1000); }); } |
