more uniform

git-svn-id: http://google-refine.googlecode.com/svn/trunk@618 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Stefano Mazzocchi 2010-05-07 00:14:46 +00:00
parent 4058fc8045
commit b4343731a1
3 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ ScatterplotDialog.prototype._createDialog = function() {
var left_footer = footer.find(".left");
var right_footer = footer.find(".right");
$('<button></button>').text("close").click(function() { self._dismiss(); }).appendTo(right_footer);
$('<button></button>').text("Close").click(function() { self._dismiss(); }).appendTo(right_footer);
$('<div class="scatterplot-dialog-selectors-container">' +
'<table class="scatterplot-selectors"><tr>' +

View File

@ -188,14 +188,14 @@ ListFacet.prototype._copyChoices = function() {
var frame = DialogSystem.createDialog();
frame.width("600px");
var header = $('<div></div>').addClass("dialog-header").text("Copy Facet Choices").appendTo(frame);
var header = $('<div></div>').addClass("dialog-header").text("Facet Choices exported as TSV").appendTo(frame);
var body = $('<div></div>').addClass("dialog-body").appendTo(frame);
var footer = $('<div></div>').addClass("dialog-footer").appendTo(frame);
body.html('<textarea wrap="off" bind="textarea" style="display: block; width: 100%; height: 400px;" />');
var elmts = DOM.bind(body);
$('<button></button>').text("Done").click(function() {
$('<button></button>').text("Close").click(function() {
DialogSystem.dismissUntil(level - 1);
}).appendTo(footer);

View File

@ -186,7 +186,7 @@ HistoryWidget.prototype._showExtractOperationsDialog = function(json) {
};
updateJson();
$('<button></button>').text("Done").click(function() {
$('<button></button>').text("Close").click(function() {
DialogSystem.dismissUntil(level - 1);
}).appendTo(footer);