Skip to content

Commit

Permalink
Merge pull request #4737 from uclixnjupyternbaccessibility/issue-#3995
Browse files Browse the repository at this point in the history
Missing label for textbox in move popup: Issue #3995
  • Loading branch information
takluyver authored Jul 11, 2019
2 parents 563593a + d919e2e commit 4312884
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebook/static/tree/js/notebooklist.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 4312884

Please sign in to comment.