JavaScriptのみで記述されたブログツール・ソフトウェアです。表示にExt JSを使用します
Revision | e2e6ec85f8a477c34f52aaebcba8c16b2ddfb814 (tree) |
---|---|
Time | 2009-07-13 20:11:31 |
Author | elixirel <elixirel@user...> |
Commiter | elixirel |
Fixed bug not change title when you update diary.
@@ -60,6 +60,8 @@ function applyChange(){ | ||
60 | 60 | entryList[editIndex].title = document.getElementById("entry_title").value; |
61 | 61 | entryList[editIndex].updated = getDate(); |
62 | 62 | entryList[editIndex].content = document.getElementById("entry_stdin").value.replace(/\r\n/g, "\n"); |
63 | + | |
64 | + document.getElementById("logBox").options[editIndex + 1].text = entryList[editIndex].title; | |
63 | 65 | } |
64 | 66 | |
65 | 67 | document.getElementById("stdout").value = toXml(feedInfo, entryList); |