|
@@ -82,7 +82,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="modal-footer">
|
|
|
- <button type="button" class="btn btn-danger" onclick="updateHeader();">完成修改</button>
|
|
|
+ <button type="button" id="uptbtn" class="btn btn-danger" onclick="updateHeader();">完成修改</button>
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
@@ -151,6 +151,7 @@
|
|
|
else {
|
|
|
writeMd();
|
|
|
} */
|
|
|
+ $("#uptbtn").attr('disabled', true);
|
|
|
writeMd();
|
|
|
// location.reload();
|
|
|
}
|
|
@@ -164,7 +165,7 @@
|
|
|
mdContent += 'url: "' + $('#curl').val() + '"\n';
|
|
|
//mdContent += 'url: "' + $('#curl').val() + '"\n';
|
|
|
mdContent += 'image: "' + $('#cimage').val() + '"\n';
|
|
|
- mdContent += 'description: "' + $('#cdescription').val().replace(/\r?\n/g,'<br>') + '"\n';
|
|
|
+ mdContent += 'description: "' + $('#cdescription').val().replace(/\r?\n/g, '<br>') + '"\n';
|
|
|
mdContent += 'weight: ' + ($('#cweight').val() == 'undefined' ? "" : $('#cweight').val()) + '\n';
|
|
|
mdContent += 'tag: "' + ($('#ctag').val() == 'undefined' ? "" : $('#ctag').val()) + '"\n';
|
|
|
mdContent += '---\n';
|
|
@@ -192,7 +193,7 @@
|
|
|
//console.log(mdContent);
|
|
|
axios.post(contentApiUrl + editTarget, json = postData).then(({ data }) => {
|
|
|
});
|
|
|
- }).finally(() => {
|
|
|
+ }).finally(() => {
|
|
|
alert('資料已更新'); // test
|
|
|
location.reload();
|
|
|
});
|