Skip to content

Commit

Permalink
pressing edit or undo on the verify package page does not reset focus (
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Bommarito authored May 11, 2017
1 parent c4297a9 commit cdcb6a8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/NuGetGallery/Views/Packages/VerifyPackage.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@
$("#" + name + "Field").show();
$("#" + name + "Button").hide();
$("#Undo" + name).show();
$("#Undo" + name).focus();
});
SetDataEditedFlag = function (event) {
Expand All @@ -251,6 +252,7 @@
$("#" + name + "Field").hide();
$("#" + name + "Button").show();
$("#Undo" + name).hide();
$("#" + name + "Button").focus();
});
}
Expand Down

0 comments on commit cdcb6a8

Please sign in to comment.