From 36ef8a6a3b6f3b102e4555d7bf730ba91cea93d5 Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Mon, 7 Mar 2022 10:24:20 +0000 Subject: [PATCH 1/2] i18n: Correct typo Credit to @crislv09 Fixes #538 --- i18n/es-MX.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i18n/es-MX.json b/i18n/es-MX.json index db70723..84b2d79 100644 --- a/i18n/es-MX.json +++ b/i18n/es-MX.json @@ -211,7 +211,7 @@ "stateRestore": { "removeTitle": "Eliminar", "creationModal": { - "search": "Busccar" + "search": "Buscar" } } } \ No newline at end of file From 06210a13dd4c7c58f5567ba9604bb4e390102b20 Mon Sep 17 00:00:00 2001 From: Colin Marks Date: Fri, 29 Apr 2022 09:17:56 +0100 Subject: [PATCH 2/2] TEST debug left in the luxon datetime plugin --- sorting/datetime-luxon.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sorting/datetime-luxon.js b/sorting/datetime-luxon.js index 9baf91f..f743816 100644 --- a/sorting/datetime-luxon.js +++ b/sorting/datetime-luxon.js @@ -52,10 +52,6 @@ $.fn.dataTable.luxon = function ( format, locale, reverseEmpties ) { return 'luxon-'+format; } - if(!luxon.DateTime.fromFormat( d, format).isValid) { - console.log("pause") - } - return luxon.DateTime.fromFormat( d, format).isValid ? 'luxon-'+format : null; @@ -71,4 +67,4 @@ $.fn.dataTable.luxon = function ( format, locale, reverseEmpties ) { }; }; -})); \ No newline at end of file +}));