|
@@ -104,8 +104,6 @@ function my_article_edit(id) {
|
|
|
html += "<input type='hidden' name='id' value='" + result.id + "'/>";
|
|
html += "<input type='hidden' name='id' value='" + result.id + "'/>";
|
|
|
html +=
|
|
html +=
|
|
|
"<input type='hidden' name='tag' value='" + result.tag + "'/>";
|
|
"<input type='hidden' name='tag' value='" + result.tag + "'/>";
|
|
|
- html +=
|
|
|
|
|
- "<textarea name='summary' >" + result.summary + "</textarea>";
|
|
|
|
|
html +=
|
|
html +=
|
|
|
"<input type='hidden' name='status' value='" +
|
|
"<input type='hidden' name='status' value='" +
|
|
|
result.status +
|
|
result.status +
|
|
@@ -113,6 +111,7 @@ function my_article_edit(id) {
|
|
|
|
|
|
|
|
html += "<input type='checkbox' name='import' />" + gLocal.gui.import + gLocal.gui.text;
|
|
html += "<input type='checkbox' name='import' />" + gLocal.gui.import + gLocal.gui.text;
|
|
|
html += "<div>";
|
|
html += "<div>";
|
|
|
|
|
+ html += "<div id='article_collect' vui='collect-dlg' ></div>"
|
|
|
html += "<div style='display:flex;'>";
|
|
html += "<div style='display:flex;'>";
|
|
|
html += "<span style='flex:3;margin:auto;'>" + gLocal.gui.title + "</span>"
|
|
html += "<span style='flex:3;margin:auto;'>" + gLocal.gui.title + "</span>"
|
|
|
html += '<span id="article_title" style="flex:7;"></span></div>';
|
|
html += '<span id="article_title" style="flex:7;"></span></div>';
|
|
@@ -124,6 +123,10 @@ function my_article_edit(id) {
|
|
|
'" value="' +
|
|
'" value="' +
|
|
|
result.lang +
|
|
result.lang +
|
|
|
'" > <input id="article_lang" type="hidden" name="lang" value=""></div>';
|
|
'" > <input id="article_lang" type="hidden" name="lang" value=""></div>';
|
|
|
|
|
+ html += "<div style='display:flex;'>";
|
|
|
|
|
+ html += "<span style='flex:3;margin:auto;'>" + gLocal.gui.introduction + "</span>"
|
|
|
|
|
+ html +=
|
|
|
|
|
+ "<textarea style='flex:7;' name='summary' >" + result.summary + "</textarea></div>";
|
|
|
html += "</div>";
|
|
html += "</div>";
|
|
|
html += "</div>";
|
|
html += "</div>";
|
|
|
|
|
|