Loading indicator for notes

This commit is contained in:
Aaron Lidman 2013-11-12 11:20:23 -08:00
parent 7a435df917
commit 4bfbdcc2f1
2 changed files with 16 additions and 1 deletions

View file

@ -135,7 +135,9 @@ function initializeBrowse(map) {
}
function setStatus(status) {
$('#browse_status').append($('<p></p>').text(status));
if($('#browse_status').is(':empty')) {
$('#browse_status').append($('<p></p>').text(status));
}
}
function clearStatus() {