关闭所有 bug
This commit is contained in:
parent
5f22b9a6a7
commit
cfd5027396
|
@ -63,6 +63,10 @@
|
|||
text-decoration: none;
|
||||
}
|
||||
|
||||
.dialog-close-icon:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.dialog-main > div {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
@ -43,6 +43,10 @@ $.extend(Tabs.prototype, {
|
|||
var _that = this;
|
||||
|
||||
obj._$tabs.on("click", "div", function (event) {
|
||||
if ($(this).hasClass('current')) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var id = $(this).data("index");
|
||||
_that.setCurrent(id);
|
||||
if (typeof (obj.clickAfter) === "function") {
|
||||
|
|
|
@ -30,6 +30,7 @@ var wide = {
|
|||
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
async: false,
|
||||
url: config.context + '/outline',
|
||||
data: JSON.stringify(request),
|
||||
dataType: "json",
|
||||
|
@ -85,7 +86,7 @@ var wide = {
|
|||
|
||||
$("#dialogAlert").dialog({
|
||||
"modal": true,
|
||||
"height": 26,
|
||||
"height": 36,
|
||||
"width": 260,
|
||||
"title": config.label.tip,
|
||||
"hiddenOk": true,
|
||||
|
|
Loading…
Reference in New Issue