mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-03 04:15:29 +00:00
Support informal time zones.
This commit is contained in:
parent
dfd449b101
commit
9474006d83
7 changed files with 17 additions and 12 deletions
|
@ -109,11 +109,12 @@ $(function () {
|
|||
var lastFormat = "local";
|
||||
function switchDateFormat(format) {
|
||||
lastFormat = format;
|
||||
var tz = format == "local" ? spacetime().timezone().name : format;
|
||||
$("#log tr").each(function(index, row) {
|
||||
var s = spacetime(row.getAttribute("data-dt")).goto(tz);
|
||||
$(".date", row).text(s.unixFmt("MMM d"));
|
||||
$(".time", row).text(s.unixFmt("h:mm"));
|
||||
var dt = moment(row.getAttribute("data-dt"));
|
||||
format == "local" ? dt.local() : dt.tz(format);
|
||||
|
||||
$(".date", row).text(dt.format("MMM D"));
|
||||
$(".time", row).text(dt.format("HH:mm"));
|
||||
})
|
||||
|
||||
// The table is initially hidden to avoid flickering as we convert dates.
|
||||
|
|
|
@ -11,12 +11,13 @@ $(function () {
|
|||
});
|
||||
|
||||
function switchDateFormat(format) {
|
||||
var tz = format == "local" ? spacetime().timezone().name : format;
|
||||
$("#log tr").each(function(index, row) {
|
||||
var s = spacetime(row.getAttribute("data-dt")).goto(tz);
|
||||
$(".date", row).text(s.unixFmt("MMM d"));
|
||||
$(".time", row).text(s.unixFmt("h:mm"));
|
||||
})
|
||||
var dt = moment(row.getAttribute("data-dt"));
|
||||
format == "local" ? dt.local() : dt.tz(format);
|
||||
|
||||
$(".date", row).text(dt.format("MMM D"));
|
||||
$(".time", row).text(dt.format("HH:mm"));
|
||||
})
|
||||
}
|
||||
|
||||
$("#format-switcher").click(function(ev) {
|
||||
|
|
1
static/js/moment-timezone-with-data-10-year-range.min.js
vendored
Normal file
1
static/js/moment-timezone-with-data-10-year-range.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
static/js/moment.min.js
vendored
Normal file
1
static/js/moment.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
static/js/spacetime.min.js
vendored
1
static/js/spacetime.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -262,7 +262,8 @@
|
|||
<script src="{% static 'js/bootstrap-select.min.js' %}"></script>
|
||||
<script src="{% static 'js/nouislider.min.js' %}"></script>
|
||||
<script src="{% static 'js/snippet-copy.js' %}"></script>
|
||||
<script src="{% static 'js/spacetime.min.js' %}"></script>
|
||||
<script src="{% static 'js/moment.min.js' %}"></script>
|
||||
<script src="{% static 'js/moment-timezone-with-data-10-year-range.min.js' %}"></script>
|
||||
<script src="{% static 'js/update-timeout-modal.js' %}"></script>
|
||||
<script src="{% static 'js/adaptive-setinterval.js' %}"></script>
|
||||
<script src="{% static 'js/details.js' %}"></script>
|
||||
|
|
|
@ -171,7 +171,8 @@
|
|||
{% compress js %}
|
||||
<script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
|
||||
<script src="{% static 'js/bootstrap.min.js' %}"></script>
|
||||
<script src="{% static 'js/spacetime.min.js' %}"></script>
|
||||
<script src="{% static 'js/moment.min.js' %}"></script>
|
||||
<script src="{% static 'js/moment-timezone-with-data-10-year-range.min.js' %}"></script>
|
||||
<script src="{% static 'js/log.js' %}"></script>
|
||||
{% endcompress %}
|
||||
{% endblock %}
|
||||
|
|
Loading…
Add table
Reference in a new issue