Przeglądaj źródła

- Bugfix Datumsanzeige in DataTable liste

master
Marcel Völkel 7 lat temu
rodzic
commit
cafd911893
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2
    2
      web/lib/SmartAdmin/js/ajax/dataTable.js

+ 2
- 2
web/lib/SmartAdmin/js/ajax/dataTable.js Wyświetl plik

@@ -31,8 +31,8 @@ $.extend(true, $.fn.dataTable.defaults, {
31 31
 function convertTimestamp(UNIX_TS) {
32 32
     var date = new Date(UNIX_TS * 1000);
33 33
     var year = date.getFullYear();
34
-    var month = date.getMonth()+1;
35
-    var day = date.getDate();
34
+    var month = date.getMonth()+1 < 10 ? '0'+date.getMonth() : date.getMonth();
35
+    var day = date.getDate() < 10 ? '0'+date.getDate() : date.getDate();
36 36
     var hour = date.getHours() < 10 ? '0'+date.getHours() : date.getHours();
37 37
     var min = date.getMinutes() < 10 ? '0'+date.getMinutes() : date.getMinutes();
38 38
     var sec = date.getSeconds() < 10 ? '0'+date.getSeconds() : date.getSeconds();

Ładowanie…
Anuluj
Zapisz