Updated firefox extension to v0.3, focused on making the settings menu look nicer

This commit is contained in:
Isaac Grynsztein
2020-03-17 18:15:07 -04:00
parent a5e1906196
commit aa80f52838
6 changed files with 55 additions and 22 deletions

View File

@@ -7,11 +7,10 @@ function save_options() {
audio_only: audio_only
}, function() {
// Update status to let user know options were saved.
var status = document.getElementById('status');
status.textContent = 'Options saved.';
$('#collapseExample').collapse('show');
setTimeout(function() {
status.textContent = '';
}, 750);
$('#collapseExample').collapse('hide');
}, 2000);
});
}