소스 검색

Show locale string on timestamp (#6324)

Resolve #6004
tags/v1.9.0-rc1
NateScarlet 5 년 전
부모
커밋
b78cbbcaa2
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4
    0
      public/js/index.js

+ 4
- 0
public/js/index.js 파일 보기

@@ -1892,6 +1892,10 @@ $(document).ready(function () {

// Show exact time
$('.time-since').each(function () {
var time = new Date($(this).attr('title'))
if (!isNaN(time)){
$(this).attr('title', time.toLocaleString())
}
$(this).addClass('poping up').attr('data-content', $(this).attr('title')).attr('data-variation', 'inverted tiny').attr('title', '');
});


Loading…
취소
저장