mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-01 12:56:54 +08:00
Merge pull request #4737 from uclixnjupyternbaccessibility/issue-#3995
Missing label for textbox in move popup: Issue #3995
This commit is contained in:
commit
431288498a
@ -1071,10 +1071,10 @@ define([
|
||||
}
|
||||
|
||||
// Open a dialog to enter the new path, with current path as default.
|
||||
var input = $('<input/>').attr('type','text').attr('size','25').addClass('form-control')
|
||||
var input = $('<input/>').attr('type','text').attr('size','25').attr('aria-labelledby','move-message').addClass('form-control')
|
||||
.val(utils.url_path_join('/', that.notebook_path));
|
||||
var dialog_body = $('<div/>').append(
|
||||
$("<p/>").addClass("rename-message")
|
||||
$("<p/>").addClass("rename-message").attr('id', 'move-message')
|
||||
.text(i18n.msg.sprintf(i18n.msg.ngettext("Enter a new destination directory path for this item:",
|
||||
"Enter a new destination directory path for these %d items:", num_items),num_items))
|
||||
).append(
|
||||
|
Loading…
Reference in New Issue
Block a user