mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2024-11-14 08:11:45 -05:00
bf3048baf8
for better readability
30 lines
722 B
JavaScript
30 lines
722 B
JavaScript
function timeago() {
|
|
$("time.timeago").timeago();
|
|
$("time.timeago").each(function () {
|
|
var date = new Date($(this).attr("datetime"));
|
|
$(this).attr("title", date.toLocaleString());
|
|
});
|
|
}
|
|
|
|
(function () {
|
|
jQuery.timeago.settings.allowFuture = true;
|
|
|
|
timeago();
|
|
|
|
$("body").on("click", ".navbar-toggle", function () {
|
|
$($(this).data("target")).toggleClass("collapse");
|
|
});
|
|
|
|
var incidents = $(".timeline");
|
|
$("body").on("click", "#loadmore", function (e) {
|
|
e.preventDefault();
|
|
var url = $("#loadmore").attr("href") + "&ajax=true";
|
|
$("#loadmore").remove();
|
|
|
|
$.get(url, function (data) {
|
|
incidents.append(data);
|
|
timeago();
|
|
});
|
|
});
|
|
})();
|