kopia lustrzana https://github.com/dgtlmoon/changedetection.io
UI - Adding mouseover/title to show absolute date/time of a last-change or last-checked date #1860
rodzic
1d5fe51157
commit
9cb636e638
|
@ -4,6 +4,14 @@ $(function () {
|
||||||
$(this).closest('.unviewed').removeClass('unviewed');
|
$(this).closest('.unviewed').removeClass('unviewed');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('td[data-timestamp]').each(function () {
|
||||||
|
$(this).prop('title', new Intl.DateTimeFormat(undefined,
|
||||||
|
{
|
||||||
|
dateStyle: 'full',
|
||||||
|
timeStyle: 'long'
|
||||||
|
}).format($(this).data('timestamp') * 1000));
|
||||||
|
})
|
||||||
|
|
||||||
$("#checkbox-assign-tag").click(function (e) {
|
$("#checkbox-assign-tag").click(function (e) {
|
||||||
$('#op_extradata').val(prompt("Enter a tag name"));
|
$('#op_extradata').val(prompt("Enter a tag name"));
|
||||||
});
|
});
|
||||||
|
|
|
@ -154,8 +154,8 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
<td class="last-checked">{{watch|format_last_checked_time|safe}}</td>
|
<td class="last-checked" data-timestamp="{{ watch.last_checked }}">{{watch|format_last_checked_time|safe}}</td>
|
||||||
<td class="last-changed">{% if watch.history_n >=2 and watch.last_changed >0 %}
|
<td class="last-changed" data-timestamp="{{ watch.last_changed }}">{% if watch.history_n >=2 and watch.last_changed >0 %}
|
||||||
{{watch.last_changed|format_timestamp_timeago}}
|
{{watch.last_changed|format_timestamp_timeago}}
|
||||||
{% else %}
|
{% else %}
|
||||||
Not yet
|
Not yet
|
||||||
|
|
Ładowanie…
Reference in New Issue