21 lines
536 B
21 lines
536 B
3 years ago
|
var AddDialog = function (parent) {
|
||
|
this.Parent = parent;
|
||
|
|
||
|
this.Setup = function () {
|
||
|
$("#sure-btn").on("click", this.OnSureButtonClick.bind(this));
|
||
|
$("#cancel-btn").on("click", this.HideDialog.bind(this));
|
||
|
$("#close").on("click", this.HideDialog.bind(this));
|
||
|
};
|
||
|
|
||
|
this.Show = function () {
|
||
|
$('#add-dialog').show();
|
||
|
};
|
||
|
|
||
|
this.OnSureButtonClick = function () {
|
||
|
$('#add-dialog').hide();
|
||
|
};
|
||
|
|
||
|
this.HideDialog = function () {
|
||
|
$('#add-dialog').hide();
|
||
|
};
|
||
|
};
|