diff options
| -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);  	});  } | 
