diff --git a/src/main/webapp/scripts/dialogs/scatterplot-dialog.js b/src/main/webapp/scripts/dialogs/scatterplot-dialog.js
index f6d6f1f8f..a9b9c6996 100644
--- a/src/main/webapp/scripts/dialogs/scatterplot-dialog.js
+++ b/src/main/webapp/scripts/dialogs/scatterplot-dialog.js
@@ -28,7 +28,7 @@ ScatterplotDialog.prototype._createDialog = function() {
var left_footer = footer.find(".left");
var right_footer = footer.find(".right");
- $('').text("close").click(function() { self._dismiss(); }).appendTo(right_footer);
+ $('').text("Close").click(function() { self._dismiss(); }).appendTo(right_footer);
$('
' +
'
' +
diff --git a/src/main/webapp/scripts/facets/list-facet.js b/src/main/webapp/scripts/facets/list-facet.js
index 1a9e3cbb6..5deca3066 100644
--- a/src/main/webapp/scripts/facets/list-facet.js
+++ b/src/main/webapp/scripts/facets/list-facet.js
@@ -188,14 +188,14 @@ ListFacet.prototype._copyChoices = function() {
var frame = DialogSystem.createDialog();
frame.width("600px");
- var header = $('').addClass("dialog-header").text("Copy Facet Choices").appendTo(frame);
+ var header = $('').addClass("dialog-header").text("Facet Choices exported as TSV").appendTo(frame);
var body = $('').addClass("dialog-body").appendTo(frame);
var footer = $('').addClass("dialog-footer").appendTo(frame);
body.html('');
var elmts = DOM.bind(body);
- $('').text("Done").click(function() {
+ $('').text("Close").click(function() {
DialogSystem.dismissUntil(level - 1);
}).appendTo(footer);
diff --git a/src/main/webapp/scripts/widgets/history-widget.js b/src/main/webapp/scripts/widgets/history-widget.js
index ada872e1d..a790208d1 100644
--- a/src/main/webapp/scripts/widgets/history-widget.js
+++ b/src/main/webapp/scripts/widgets/history-widget.js
@@ -186,7 +186,7 @@ HistoryWidget.prototype._showExtractOperationsDialog = function(json) {
};
updateJson();
- $('').text("Done").click(function() {
+ $('').text("Close").click(function() {
DialogSystem.dismissUntil(level - 1);
}).appendTo(footer);