changes based on igels review

This commit is contained in:
marudor 2018-02-08 23:01:43 +01:00
parent 71b41847e6
commit 757d879469
No known key found for this signature in database
GPG Key ID: C850357A1DF82F0B
4 changed files with 17 additions and 16 deletions

14
js/moment-countdown.js Normal file
View File

@ -0,0 +1,14 @@
$(document).ready(function () {
if (typeof moment !== "undefined") {
$.each($(".moment-countdown"), function (i, e) {
var span = $(e);
var text = span.html();
/* global moment */
var timestamp = moment(parseInt(span.attr("data-timestamp") * 1000));
span.html(text.replace("%c", timestamp.fromNow()));
setInterval(function () {
span.html(text.replace("%c", timestamp.fromNow()));
}, 1000);
});
}
});

View File

@ -10,22 +10,10 @@ import 'imports-loader?this=>window&define=>false&exports=>false!moment/locale/d
import './forms';
import './sticky-headers';
import 'icomoon/style.css';
import './moment-countdown';
$(function () {
moment.locale("%locale%");
});
$(document).ready(function () {
if (typeof moment !== "undefined") {
$.each($(".moment-countdown"), function (i, e) {
var span = $(e);
var text = span.html();
/* global moment */
var timestamp = moment(parseInt(span.attr("data-timestamp") * 1000));
span.html(text.replace("%c", timestamp.fromNow()));
setInterval(function () {
span.html(text.replace("%c", timestamp.fromNow()));
}, 1000);
});
}
});

View File

@ -31,7 +31,6 @@ class Db
try {
self::$db = new PDO($dsn, $username, $password, $options);
} catch (PDOException $e) {
var_dump($e);
return false;
}

View File

@ -38,7 +38,7 @@
· <a href="https://github.com/engelsystem/engelsystem/issues">Bugs / Features</a>
· <a href="https://github.com/engelsystem/engelsystem/">Development Platform</a>
· <a href="%credits_url%">Credits</a>
</div>;
</div>
</div>
</div>
</div>