tab bug
This commit is contained in:
parent
56238e26e3
commit
a9a09b44da
|
@ -160,5 +160,6 @@
|
|||
"no_empty": "Can not Empty!",
|
||||
"change_avatar": "Avatar modify go",
|
||||
"open": "Open",
|
||||
"pricing": "Pricing"
|
||||
"pricing": "Pricing",
|
||||
"search_no_match": "No matching files were found."
|
||||
}
|
|
@ -160,5 +160,6 @@
|
|||
"no_empty": "空ではありません",
|
||||
"change_avatar": "アバターの変更は行く",
|
||||
"open": "オープン",
|
||||
"pricing": "价格"
|
||||
"pricing": "价格",
|
||||
"search_no_match": "一致するファイルが見つかりませんでした。"
|
||||
}
|
||||
|
|
|
@ -160,5 +160,6 @@
|
|||
"no_empty": "不能为空",
|
||||
"change_avatar": "头像修改请到",
|
||||
"open": "打开",
|
||||
"pricing": "价格"
|
||||
"pricing": "价格",
|
||||
"search_no_match": "没有发现匹配的文件。"
|
||||
}
|
|
@ -160,5 +160,6 @@
|
|||
"no_empty": "不能為空",
|
||||
"change_avatar": "頭像修改請到",
|
||||
"open": "打開",
|
||||
"pricing": "價格"
|
||||
"pricing": "價格",
|
||||
"search_no_match": "沒有發現匹配的文件。"
|
||||
}
|
|
@ -646,6 +646,10 @@ var editors = {
|
|||
+ data[i].line + '" data-ch="' + data[i].ch + '"> (' + data[i].line + ':'
|
||||
+ data[i].ch + ')</i></span></li>';
|
||||
}
|
||||
|
||||
if (data.length === 0) {
|
||||
searcHTML += '<li>' + config.label.search_no_match + '</li>';
|
||||
}
|
||||
searcHTML += '</ul>';
|
||||
|
||||
var $search = $('.bottom-window-group .search'),
|
||||
|
|
|
@ -23,6 +23,19 @@ var Tabs = function (obj) {
|
|||
this.obj.STACKSIZE = 64;
|
||||
|
||||
this._init(obj);
|
||||
|
||||
// DOM 元素存在时,应顺序入栈
|
||||
var _it = this;
|
||||
$(obj.id + " > .tabs > div").each(function () {
|
||||
var id = $(this).data("index");
|
||||
if (obj._stack.length === _it.obj.STACKSIZE) {
|
||||
obj._stack.splice(0, 1);
|
||||
}
|
||||
if (obj._stack[obj._stack.length - 1] !== id) {
|
||||
_it.obj._stack.push(id);
|
||||
}
|
||||
});
|
||||
|
||||
};
|
||||
|
||||
$.extend(Tabs.prototype, {
|
||||
|
|
|
@ -585,7 +585,8 @@
|
|||
"uptodate": "{{.i18n.uptodate}}",
|
||||
"perference": "{{.i18n.perference}}",
|
||||
"apply": "{{.i18n.apply}}",
|
||||
"no_empty": "{{.i18n.no_empty}}"
|
||||
"no_empty": "{{.i18n.no_empty}}",
|
||||
"search_no_match": "{{.i18n.search_no_match}}"
|
||||
},
|
||||
"channel": {{.conf.Channel}},
|
||||
"wideSessionId": '{{.session.ID}}',
|
||||
|
|
Loading…
Reference in New Issue