Added class 'button' to buttons.
git-svn-id: http://google-refine.googlecode.com/svn/trunk@1580 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
parent
c451b2ded5
commit
6da68b37ef
@ -5,7 +5,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td width="300" height="1">Add Property</td>
|
<td width="300" height="1">Add Property</td>
|
||||||
<td height="1">Preview</td>
|
<td height="1">Preview</td>
|
||||||
<td height="1" width="1%"><button bind="resetButton">Reset</button></td>
|
<td height="1" width="1%"><button class="button" bind="resetButton">Reset</button></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="vertical-align: top;" height="1"><div class="input-container"><input bind="addPropertyInput" /></div></td>
|
<td style="vertical-align: top;" height="1"><div class="input-container"><input bind="addPropertyInput" /></div></td>
|
||||||
@ -20,7 +20,7 @@
|
|||||||
</table></div>
|
</table></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog-footer" bind="dialogFooter">
|
<div class="dialog-footer" bind="dialogFooter">
|
||||||
<button bind="okButton"> OK </button>
|
<button class="button" bind="okButton"> OK </button>
|
||||||
<button bind="cancelButton">Cancel</button>
|
<button class="button" bind="cancelButton">Cancel</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -321,8 +321,8 @@ ExtendDataPreviewDialog.prototype._constrainProperty = function(path) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
footer.html(
|
footer.html(
|
||||||
'<button bind="okButton"> OK </button>' +
|
'<button class="button" bind="okButton"> OK </button>' +
|
||||||
'<button bind="cancelButton">Cancel</button>'
|
'<button class="button" bind="cancelButton">Cancel</button>'
|
||||||
);
|
);
|
||||||
var footerElmts = DOM.bind(footer);
|
var footerElmts = DOM.bind(footer);
|
||||||
|
|
||||||
|
@ -5,14 +5,14 @@
|
|||||||
<div class="dialog-footer" bind="dialogFooter">
|
<div class="dialog-footer" bind="dialogFooter">
|
||||||
<table width="100%"><tr>
|
<table width="100%"><tr>
|
||||||
<td bind="left" style="text-align: left" width="40%" nowrap="true">
|
<td bind="left" style="text-align: left" width="40%" nowrap="true">
|
||||||
<button bind="cancelButton" id="freebase-loading-cancel">Cancel</button>
|
<button class="button" bind="cancelButton" id="freebase-loading-cancel">Cancel</button>
|
||||||
</td>
|
</td>
|
||||||
<td bind="center" style="text-align: center" width="20%" nowrap="true">
|
<td bind="center" style="text-align: center" width="20%" nowrap="true">
|
||||||
<div bind="authorization" class="freebase-loading-authorization"></div>
|
<div bind="authorization" class="freebase-loading-authorization"></div>
|
||||||
</td>
|
</td>
|
||||||
<td bind="right" style="text-align: right" width="40%" nowrap="true">
|
<td bind="right" style="text-align: right" width="40%" nowrap="true">
|
||||||
<span bind="qaCheckboxContainer">Ready to perform QA on this data? <input bind="qaCheckbox" type="checkbox" name="qa" value="qa"></span>
|
<span bind="qaCheckboxContainer">Ready to perform QA on this data? <input bind="qaCheckbox" type="checkbox" name="qa" value="qa"></span>
|
||||||
<button bind="loadButton" id="freebase-loading-load" disabled="disabled">Load to Sandbox</button>
|
<button class="button" bind="loadButton" id="freebase-loading-load" disabled="disabled">Load to Sandbox</button>
|
||||||
</td>
|
</td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
</div>
|
</div>
|
||||||
|
@ -166,7 +166,7 @@ SchemaAlignmentDialog.prototype._createDialog = function() {
|
|||||||
SchemaAlignmentDialog.prototype._constructFooter = function(footer) {
|
SchemaAlignmentDialog.prototype._constructFooter = function(footer) {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
$('<button></button>').html(" OK ").click(function() {
|
$('<button class="button"></button>').html(" OK ").click(function() {
|
||||||
var protograph = self.getJSON();
|
var protograph = self.getJSON();
|
||||||
|
|
||||||
Refine.postProcess(
|
Refine.postProcess(
|
||||||
@ -184,7 +184,7 @@ SchemaAlignmentDialog.prototype._constructFooter = function(footer) {
|
|||||||
);
|
);
|
||||||
}).appendTo(footer);
|
}).appendTo(footer);
|
||||||
|
|
||||||
$('<button></button>').text("Cancel").click(function() {
|
$('<button class="button"></button>').text("Cancel").click(function() {
|
||||||
DialogSystem.dismissUntil(self._level - 1);
|
DialogSystem.dismissUntil(self._level - 1);
|
||||||
}).appendTo(footer);
|
}).appendTo(footer);
|
||||||
};
|
};
|
||||||
|
@ -631,7 +631,7 @@ SchemaAlignmentDialog.UINode.prototype._showNodeConfigDialog = function() {
|
|||||||
return node;
|
return node;
|
||||||
};
|
};
|
||||||
|
|
||||||
$('<button></button>').html(" OK ").click(function() {
|
$('<button class="button"></button>').html(" OK ").click(function() {
|
||||||
var node = getResultJSON();
|
var node = getResultJSON();
|
||||||
if (node !== null) {
|
if (node !== null) {
|
||||||
DialogSystem.dismissUntil(level - 1);
|
DialogSystem.dismissUntil(level - 1);
|
||||||
@ -642,7 +642,7 @@ SchemaAlignmentDialog.UINode.prototype._showNodeConfigDialog = function() {
|
|||||||
}
|
}
|
||||||
}).appendTo(footer);
|
}).appendTo(footer);
|
||||||
|
|
||||||
$('<button></button>').text("Cancel").click(function() {
|
$('<button class="button"></button>').text("Cancel").click(function() {
|
||||||
DialogSystem.dismissUntil(level - 1);
|
DialogSystem.dismissUntil(level - 1);
|
||||||
}).appendTo(footer);
|
}).appendTo(footer);
|
||||||
|
|
||||||
|
@ -44,13 +44,13 @@
|
|||||||
<div class="dialog-footer" bind="dialogFooter">
|
<div class="dialog-footer" bind="dialogFooter">
|
||||||
<table width="100%"><tr>
|
<table width="100%"><tr>
|
||||||
<td class="left" style="text-align: left">
|
<td class="left" style="text-align: left">
|
||||||
<button bind="selectAllButton">Select All</button>
|
<button class="button" bind="selectAllButton">Select All</button>
|
||||||
<button bind="deselectAllButton">Deselect All</button>
|
<button class="button" bind="deselectAllButton">Deselect All</button>
|
||||||
</td>
|
</td>
|
||||||
<td class="right" style="text-align: right">
|
<td class="right" style="text-align: right">
|
||||||
<button bind="applyReClusterButton">Apply & Re-Cluster</button>
|
<button class="button" bind="applyReClusterButton">Apply & Re-Cluster</button>
|
||||||
<button bind="applyCloseButton">Apply & Close</button>
|
<button class="button" bind="applyCloseButton">Apply & Close</button>
|
||||||
<button bind="closeButton">Close</button>
|
<button class="button" bind="closeButton">Close</button>
|
||||||
</td>
|
</td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
</div>
|
</div>
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table></div></div>
|
</table></div></div>
|
||||||
<div class="dialog-footer" bind="dialogFooter">
|
<div class="dialog-footer" bind="dialogFooter">
|
||||||
<button bind="okButton"> OK </button>
|
<button class="button" bind="okButton"> OK </button>
|
||||||
<button bind="cancelButton">Cancel</button>
|
<button class="button" bind="cancelButton">Cancel</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -12,12 +12,12 @@ function ExpressionPreviewDialog(title, cellIndex, rowIndices, values, expressio
|
|||||||
|
|
||||||
this._elmts = DOM.bind(html);
|
this._elmts = DOM.bind(html);
|
||||||
|
|
||||||
$('<button></button>').html(" OK ").click(function() {
|
$('<button class="button"></button>').html(" OK ").click(function() {
|
||||||
DialogSystem.dismissUntil(self._level - 1);
|
DialogSystem.dismissUntil(self._level - 1);
|
||||||
self._onDone(self._previewWidget.getExpression(true));
|
self._onDone(self._previewWidget.getExpression(true));
|
||||||
}).appendTo(footer);
|
}).appendTo(footer);
|
||||||
|
|
||||||
$('<button></button>').text("Cancel").click(function() {
|
$('<button class="button"></button>').text("Cancel").click(function() {
|
||||||
DialogSystem.dismissUntil(self._level - 1);
|
DialogSystem.dismissUntil(self._level - 1);
|
||||||
}).appendTo(footer);
|
}).appendTo(footer);
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td class="right" style="text-align: right">
|
<td class="right" style="text-align: right">
|
||||||
<button bind="closeButton">Close</button>
|
<button class="button" bind="closeButton">Close</button>
|
||||||
</td>
|
</td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
</div>
|
</div>
|
||||||
|
@ -21,11 +21,11 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="dialog-footer" bind="dialogFooter"><div class="grid-layout layout-normal layout-full"><table><tr>
|
<div class="dialog-footer" bind="dialogFooter"><div class="grid-layout layout-normal layout-full"><table><tr>
|
||||||
<td align="left">
|
<td align="left">
|
||||||
<button bind="resetButton">Reset Template</button>
|
<button class="button" bind="resetButton">Reset Template</button>
|
||||||
</td>
|
</td>
|
||||||
<td style="text-align: right;">
|
<td style="text-align: right;">
|
||||||
<button bind="exportButton">Export</button>
|
<button class="button" bind="exportButton">Export</button>
|
||||||
<button bind="cancelButton">Cancel</button>
|
<button class="button" bind="cancelButton">Cancel</button>
|
||||||
</td>
|
</td>
|
||||||
</tr></table></div></div>
|
</tr></table></div></div>
|
||||||
</div>
|
</div>
|
@ -198,7 +198,7 @@ ListFacet.prototype._copyChoices = function() {
|
|||||||
body.html('<textarea wrap="off" bind="textarea" style="display: block; width: 100%; height: 400px;" />');
|
body.html('<textarea wrap="off" bind="textarea" style="display: block; width: 100%; height: 400px;" />');
|
||||||
var elmts = DOM.bind(body);
|
var elmts = DOM.bind(body);
|
||||||
|
|
||||||
$('<button></button>').text("Close").click(function() {
|
$('<button class="button"></button>').text("Close").click(function() {
|
||||||
DialogSystem.dismissUntil(level - 1);
|
DialogSystem.dismissUntil(level - 1);
|
||||||
}).appendTo(footer);
|
}).appendTo(footer);
|
||||||
|
|
||||||
@ -457,11 +457,11 @@ ListFacet.prototype._editChoice = function(choice, choiceDiv) {
|
|||||||
'</tr>' +
|
'</tr>' +
|
||||||
'<tr>' +
|
'<tr>' +
|
||||||
'<td width="1%" align="center">' +
|
'<td width="1%" align="center">' +
|
||||||
'<button bind="okButton">Apply</button><br/>' +
|
'<button class="button" bind="okButton">Apply</button><br/>' +
|
||||||
'<span class="data-table-cell-editor-key">Enter</span>' +
|
'<span class="data-table-cell-editor-key">Enter</span>' +
|
||||||
'</td>' +
|
'</td>' +
|
||||||
'<td width="1%" align="center">' +
|
'<td width="1%" align="center">' +
|
||||||
'<button bind="cancelButton">Cancel</button><br/>' +
|
'<button class="button" bind="cancelButton">Cancel</button><br/>' +
|
||||||
'<span class="data-table-cell-editor-key">Esc</span>' +
|
'<span class="data-table-cell-editor-key">Esc</span>' +
|
||||||
'</td>' +
|
'</td>' +
|
||||||
'<td>' +
|
'<td>' +
|
||||||
|
@ -26,7 +26,7 @@ function populatePreferences(prefs) {
|
|||||||
var tdLast0 = trLast.insertCell(0);
|
var tdLast0 = trLast.insertCell(0);
|
||||||
trLast.insertCell(1);
|
trLast.insertCell(1);
|
||||||
trLast.insertCell(2);
|
trLast.insertCell(2);
|
||||||
$('<button>').text("Add Preference").appendTo(tdLast0).click(function() {
|
$('<button class="button">').text("Add Preference").appendTo(tdLast0).click(function() {
|
||||||
var key = window.prompt("Preference key:");
|
var key = window.prompt("Preference key:");
|
||||||
if (key) {
|
if (key) {
|
||||||
var value = window.prompt("Preference key value:");
|
var value = window.prompt("Preference key value:");
|
||||||
@ -63,7 +63,7 @@ function PreferenceUI(tr, key, value) {
|
|||||||
|
|
||||||
var td2 = tr.insertCell(2);
|
var td2 = tr.insertCell(2);
|
||||||
|
|
||||||
$('<button>').text("Edit").appendTo(td2).click(function() {
|
$('<button class="button">').text("Edit").appendTo(td2).click(function() {
|
||||||
var newValue = window.prompt("Change value of preference key " + key, value);
|
var newValue = window.prompt("Change value of preference key " + key, value);
|
||||||
if (newValue != null) {
|
if (newValue != null) {
|
||||||
$(td1).text(newValue);
|
$(td1).text(newValue);
|
||||||
@ -83,7 +83,7 @@ function PreferenceUI(tr, key, value) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$('<button>').text("Delete").appendTo(td2).click(function() {
|
$('<button class="button">').text("Delete").appendTo(td2).click(function() {
|
||||||
if (window.confirm("Delete preference key " + key + "?")) {
|
if (window.confirm("Delete preference key " + key + "?")) {
|
||||||
$.post(
|
$.post(
|
||||||
"/command/core/set-preference",
|
"/command/core/set-preference",
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<tr><td><div class="input-container"><input bind="typeInput" /></td></tr>
|
<tr><td><div class="input-container"><input bind="typeInput" /></td></tr>
|
||||||
</table></div></div>
|
</table></div></div>
|
||||||
<div class="dialog-footer" bind="dialogFooter">
|
<div class="dialog-footer" bind="dialogFooter">
|
||||||
<button bind="addButton">Add Service</button>
|
<button class="button" bind="addButton">Add Service</button>
|
||||||
<button bind="cancelButton">Cancel</button>
|
<button class="button" bind="cancelButton">Cancel</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -5,7 +5,7 @@
|
|||||||
<div class="input-container"><input value="http://" bind="input" /></div>
|
<div class="input-container"><input value="http://" bind="input" /></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog-footer" bind="dialogFooter">
|
<div class="dialog-footer" bind="dialogFooter">
|
||||||
<button bind="addButton">Add Service</button>
|
<button class="button" bind="addButton">Add Service</button>
|
||||||
<button bind="cancelButton">Cancel</button>
|
<button class="button" bind="cancelButton">Cancel</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -14,12 +14,12 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="dialog-footer" bind="dialogFooter"><table width="100%"><tr>
|
<div class="dialog-footer" bind="dialogFooter"><table width="100%"><tr>
|
||||||
<td align="left">
|
<td align="left">
|
||||||
<button bind="addStandardServiceButton">Add Standard Service...</button>
|
<button class="button" bind="addStandardServiceButton">Add Standard Service...</button>
|
||||||
<button bind="addNamespacedServiceButton">Add Namespaced Service...</button>
|
<button class="button" bind="addNamespacedServiceButton">Add Namespaced Service...</button>
|
||||||
</td>
|
</td>
|
||||||
<td align="right">
|
<td align="right">
|
||||||
<button bind="reconcileButton">Start Reconciling</button>
|
<button class="button" bind="reconcileButton">Start Reconciling</button>
|
||||||
<button bind="cancelButton">Cancel</button>
|
<button class="button" bind="cancelButton">Cancel</button>
|
||||||
</td>
|
</td>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -20,8 +20,8 @@
|
|||||||
</table></div>
|
</table></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog-footer" bind="dialogFooter">
|
<div class="dialog-footer" bind="dialogFooter">
|
||||||
<button bind="okButton"> OK </button>
|
<button class="button" bind="okButton"> OK </button>
|
||||||
<button bind="cancelButton">Cancel</button>
|
<button class="button" bind="cancelButton">Cancel</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -15,8 +15,8 @@
|
|||||||
</table></div>
|
</table></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog-footer" bind="dialogFooter">
|
<div class="dialog-footer" bind="dialogFooter">
|
||||||
<button bind="okButton"> OK </button>
|
<button class="button" bind="okButton"> OK </button>
|
||||||
<button bind="cancelButton">Cancel</button>
|
<button class="button" bind="cancelButton">Cancel</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -3,8 +3,8 @@
|
|||||||
<td colspan="5"><textarea class="data-table-cell-editor-editor" bind="textarea" /></td>
|
<td colspan="5"><textarea class="data-table-cell-editor-editor" bind="textarea" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="1%" align="center"><button bind="okButton">Apply</button><br/><span class="data-table-cell-editor-key">Enter</span></td>
|
<td width="1%" align="center"><button class="button" bind="okButton">Apply</button><br/><span class="data-table-cell-editor-key">Enter</span></td>
|
||||||
<td width="1%" align="center"><button bind="cancelButton">Cancel</button><br/><span class="data-table-cell-editor-key">Esc</span></td>
|
<td width="1%" align="center"><button class="button" bind="cancelButton">Cancel</button><br/><span class="data-table-cell-editor-key">Esc</span></td>
|
||||||
<td><select bind="typeSelect">
|
<td><select bind="typeSelect">
|
||||||
<option value="text">text</option>
|
<option value="text">text</option>
|
||||||
<option value="number">number</option>
|
<option value="number">number</option>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div class="data-table-topic-popup-header">
|
<div class="data-table-topic-popup-header">
|
||||||
<button title="Match topic to this cell" bind="matchButton">Match</button>
|
<button class="button" title="Match topic to this cell" bind="matchButton">Match</button>
|
||||||
<button title="Match topic to all visible cells with same content" bind="matchSimilarButton">Match Similar</button>
|
<button class="button" title="Match topic to all visible cells with same content" bind="matchSimilarButton">Match Similar</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -74,7 +74,7 @@ DataTableColumnHeaderUI.extendMenu(function(column, columnHeaderUI, menu) {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
$('<button></button>').text("Cancel").click(function() {
|
$('<button class="button"></button>').text("Cancel").click(function() {
|
||||||
DialogSystem.dismissUntil(level - 1);
|
DialogSystem.dismissUntil(level - 1);
|
||||||
}).appendTo(footer);
|
}).appendTo(footer);
|
||||||
|
|
||||||
|
@ -41,8 +41,8 @@
|
|||||||
</table></div>
|
</table></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog-footer" bind="dialogFooter">
|
<div class="dialog-footer" bind="dialogFooter">
|
||||||
<button bind="okButton"> OK </button>
|
<button class="button" bind="okButton"> OK </button>
|
||||||
<button bind="cancelButton">Cancel</button>
|
<button class="button" bind="cancelButton">Cancel</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -50,8 +50,8 @@
|
|||||||
</table></div>
|
</table></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog-footer" bind="dialogFooter">
|
<div class="dialog-footer" bind="dialogFooter">
|
||||||
<button bind="okButton"> OK </button>
|
<button class="button" bind="okButton"> OK </button>
|
||||||
<button bind="cancelButton">Cancel</button>
|
<button class="button" bind="cancelButton">Cancel</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -14,7 +14,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog-footer" bind="dialogFooter">
|
<div class="dialog-footer" bind="dialogFooter">
|
||||||
<button bind="okButton"> OK </button>
|
<button class="button" bind="okButton"> OK </button>
|
||||||
<button bind="cancelButton">Cancel</button>
|
<button class="button" bind="cancelButton">Cancel</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -33,8 +33,8 @@
|
|||||||
</table></div>
|
</table></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog-footer" bind="dialogFooter">
|
<div class="dialog-footer" bind="dialogFooter">
|
||||||
<button bind="okButton">Transpose</button>
|
<button class="button" bind="okButton">Transpose</button>
|
||||||
<button bind="cancelButton">Cancel</button>
|
<button class="button" bind="cancelButton">Cancel</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -15,7 +15,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table></div></div>
|
</table></div></div>
|
||||||
<div class="dialog-footer" bind="dialogFooter"><div class="grid-layout layout-normal layout-full"><table><tr>
|
<div class="dialog-footer" bind="dialogFooter"><div class="grid-layout layout-normal layout-full"><table><tr>
|
||||||
<td align="left"><button bind="selectAllButton">Select All</button> <button bind="unselectAllButton">Unselect All</button></td>
|
<td align="left"><button class="button" bind="selectAllButton">Select All</button> <button class="button" bind="unselectAllButton">Unselect All</button></td>
|
||||||
<td align="left"><button bind="closeButton">Close</button></td>
|
<td align="left"><button class="button" bind="closeButton">Close</button></td>
|
||||||
</tr></table></div></div>
|
</tr></table></div></div>
|
||||||
</div>
|
</div>
|
@ -208,7 +208,7 @@ HistoryWidget.prototype._showApplyOperationsDialog = function() {
|
|||||||
|
|
||||||
var elmts = DOM.bind(html);
|
var elmts = DOM.bind(html);
|
||||||
|
|
||||||
$('<button></button>').text("Apply").click(function() {
|
$('<button class="button"></button>').text("Apply").click(function() {
|
||||||
var json;
|
var json;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@ -236,7 +236,7 @@ HistoryWidget.prototype._showApplyOperationsDialog = function() {
|
|||||||
DialogSystem.dismissUntil(level - 1);
|
DialogSystem.dismissUntil(level - 1);
|
||||||
}).appendTo(footer);
|
}).appendTo(footer);
|
||||||
|
|
||||||
$('<button></button>').text("Cancel").click(function() {
|
$('<button class="button"></button>').text("Cancel").click(function() {
|
||||||
DialogSystem.dismissUntil(level - 1);
|
DialogSystem.dismissUntil(level - 1);
|
||||||
}).appendTo(footer);
|
}).appendTo(footer);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user