mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Fix current time being displayed incorrectly (e.g. 5:9 instead of 05:09) in editor autosave notification
This commit is contained in:
parent
7814352b78
commit
510cbf91ff
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ function _editorAutoSave(exe, callback) {
|
|||
editorAutoSaveObj.content = content;
|
||||
|
||||
// 메시지 만들어서 보여줌
|
||||
jQuery("#editor_autosaved_message_"+editor_sequence).text(oDate.getHours()+':'+oDate.getMinutes()+' '+auto_saved_msg).show(300);
|
||||
jQuery("#editor_autosaved_message_"+editor_sequence).text(oDate.toTimeString().substring(0, 5) + ' ' + auto_saved_msg).show(300);
|
||||
|
||||
// 현재 자동저장중임을 설정
|
||||
editorAutoSaveObj.locked = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue