preference tip 多语言修改
This commit is contained in:
parent
ed40c5b5f6
commit
41ba5a2d1a
|
@ -310,12 +310,17 @@ var menu = {
|
|||
|
||||
if (emptys.length === 0) {
|
||||
$("#dialogPreference").find(".tip").html("");
|
||||
$okBtn.prop("disabled", false);
|
||||
} else {
|
||||
for (var i = 0, max = emptys.length; i < max; i++) {
|
||||
emptysTip += '[' + emptys[i].closest('div').data("index") + '] -> [' + emptys[i].attr("name")
|
||||
var tabIndex = emptys[i].closest('div').data("index"),
|
||||
text = $.trim(emptys[i].parent().text());
|
||||
emptysTip += '[' + $("#dialogPreference .tabs > div[data-index=" + tabIndex + "]").text()
|
||||
+ '] -> [' + text.substr(0, text.length - 1)
|
||||
+ ']: ' + config.label.no_empty + "<br/>";
|
||||
}
|
||||
$("#dialogPreference").find(".tip").html(emptysTip);
|
||||
$okBtn.prop("disabled", true);
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -363,11 +368,6 @@ var menu = {
|
|||
$editorTheme = $dialogPreference.find("select[name=editorTheme]"),
|
||||
$editorTabSize = $dialogPreference.find("input[name=editorTabSize]");
|
||||
|
||||
if ($.trim($email.val()) === "") {
|
||||
$dialogPreference.find(".tip").html("[user] -> [email]: " + config.label.no_empty);
|
||||
return false;
|
||||
}
|
||||
|
||||
$.extend(request, {
|
||||
"fontFamily": $fontFamily.val(),
|
||||
"fontSize": $fontSize.val(),
|
||||
|
|
Loading…
Reference in New Issue