Skip to content

Instantly share code, notes, and snippets.

@stomita
Last active January 1, 2016 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stomita/8121088 to your computer and use it in GitHub Desktop.
Save stomita/8121088 to your computer and use it in GitHub Desktop.
Render file list with delete link.
function updateFileList() {
bucket.listObjects({}, function(err, resp) {
if (err) { throw err; }
$('#fileList').empty();
$.each(resp.Contents, function(i, content) {
var viewLink = $('<a href="#" class="view-link">').text(content.Key);
var deleteLink = $('<a href="#" class="delete-link">').text('Delete');
$('<li>').data('key', content.Key)
.append(viewLink)
.append('&nbsp;[')
.append(deleteLink)
.append(']')
.appendTo($('#fileList'));
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment