From ef30acb6ad335cc0eca984d806338df2e1d2e767 Mon Sep 17 00:00:00 2001 From: Yan Zhang Date: Fri, 2 Jun 2017 14:36:23 -0500 Subject: [PATCH] keep modified date consistant --- js/jquery-comments.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/jquery-comments.js b/js/jquery-comments.js index d2f98bf..4ef14c1 100644 --- a/js/jquery-comments.js +++ b/js/jquery-comments.js @@ -932,7 +932,7 @@ parent: textarea.attr('data-parent') || null, content: this.getTextareaContent(textarea), pings: this.getPings(textarea), - modified: new Date().getTime() + modified: new Date().toISOString() }); // Reverse mapping @@ -2315,4 +2315,4 @@ comments.init(options || {}, this); }); }; -})); \ No newline at end of file +}));