This commit is contained in:
parent
b7634fa4a5
commit
91a8fdf871
|
@ -20,7 +20,7 @@
|
||||||
"Locale": "en_US",
|
"Locale": "en_US",
|
||||||
"GoFormat": "gofmt",
|
"GoFormat": "gofmt",
|
||||||
"FontFamily": "Helvetica",
|
"FontFamily": "Helvetica",
|
||||||
"FontSize": "inherit",
|
"FontSize": "13px",
|
||||||
"Editor": {
|
"Editor": {
|
||||||
"FontFamily": "Consolas, 'Courier New', monospace",
|
"FontFamily": "Consolas, 'Courier New', monospace",
|
||||||
"FontSize": "inherit"
|
"FontSize": "inherit"
|
||||||
|
|
|
@ -714,17 +714,14 @@ var wide = {
|
||||||
switch (mode) {
|
switch (mode) {
|
||||||
case "text/x-go":
|
case "text/x-go":
|
||||||
$.ajax({
|
$.ajax({
|
||||||
|
async: false, // 同步执行
|
||||||
type: 'POST',
|
type: 'POST',
|
||||||
url: '/go/fmt',
|
url: '/go/fmt',
|
||||||
data: JSON.stringify(request),
|
data: JSON.stringify(request),
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
if (data.succ) {
|
if (data.succ) {
|
||||||
curEditor.setValue(data.code);
|
formatted = data.code;
|
||||||
curEditor.setCursor(cursor);
|
|
||||||
curEditor.scrollTo(null, scrollInfo.top);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -750,16 +747,16 @@ var wide = {
|
||||||
curEditor.scrollTo(null, scrollInfo.top);
|
curEditor.scrollTo(null, scrollInfo.top);
|
||||||
|
|
||||||
wide._save();
|
wide._save();
|
||||||
}
|
|
||||||
|
|
||||||
// 清除未保存状态
|
// 清除未保存状态
|
||||||
curEditor.doc.markClean();
|
curEditor.doc.markClean();
|
||||||
$(".edit-panel .tabs > div").each(function () {
|
$(".edit-panel .tabs > div").each(function () {
|
||||||
var $span = $(this).find("span:eq(0)");
|
var $span = $(this).find("span:eq(0)");
|
||||||
if ($span.attr("title") === path) {
|
if ($span.attr("title") === path) {
|
||||||
$span.removeClass("changed");
|
$span.removeClass("changed");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
},
|
},
|
||||||
openAbout: function () {
|
openAbout: function () {
|
||||||
$("#dialogAbout").dialog("open");
|
$("#dialogAbout").dialog("open");
|
||||||
|
|
|
@ -2,7 +2,7 @@ body,
|
||||||
input,
|
input,
|
||||||
button {
|
button {
|
||||||
font-family: Helvetica;
|
font-family: Helvetica;
|
||||||
font-size: inherit;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.edit-exprinfo,
|
.edit-exprinfo,
|
||||||
|
|
Loading…
Reference in New Issue