mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
Merge pull request #5351 from berendjan/download_multiple_files
tree added download multiple files
This commit is contained in:
commit
cbfc4dae91
@ -729,10 +729,9 @@ define([
|
||||
$('.move-button').css('display', 'none');
|
||||
}
|
||||
|
||||
// Download is only visible when one item is selected, and it is not a
|
||||
// running notebook or a directory
|
||||
// TODO(nhdaly): Add support for download multiple items at once.
|
||||
if (selected.length === 1 && !has_running_notebook && !has_directory) {
|
||||
// Download is only visible when items are selected, and none are
|
||||
// running notebooks or a directories
|
||||
if (selected.length > 0 && !has_running_notebook && !has_directory) {
|
||||
$('.download-button').css('display', 'inline-block');
|
||||
} else {
|
||||
$('.download-button').css('display', 'none');
|
||||
@ -1150,15 +1149,11 @@ define([
|
||||
|
||||
NotebookList.prototype.download_selected = function() {
|
||||
var that = this;
|
||||
|
||||
// TODO(nhdaly): Support download multiple items at once.
|
||||
if (that.selected.length !== 1){
|
||||
return;
|
||||
}
|
||||
|
||||
var item_path = that.selected[0].path;
|
||||
|
||||
window.open(utils.url_path_join(that.base_url, 'files', utils.encode_uri_components(item_path)) + '?download=1', IPython._target);
|
||||
|
||||
that.selected.forEach(function(item) {
|
||||
var item_path = utils.encode_uri_components(item.path);
|
||||
window.open(utils.url_path_join(that.base_url, 'files', utils.encode_uri_components(item_path)) + '?download=1', IPython._target);
|
||||
});
|
||||
};
|
||||
|
||||
NotebookList.prototype.delete_selected = function() {
|
||||
|
Loading…
Reference in New Issue
Block a user