From 1f6729fabf5a29275ff423be28d79dc305e3e33d Mon Sep 17 00:00:00 2001 From: zhaoqiang wang Date: Fri, 1 Dec 2017 18:39:25 +0900 Subject: [PATCH] support international default should be varable th, not a string 'th' --- src/jquery.date-dropdowns.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.date-dropdowns.js b/src/jquery.date-dropdowns.js index 0009c2a..149a658 100644 --- a/src/jquery.date-dropdowns.js +++ b/src/jquery.date-dropdowns.js @@ -464,7 +464,7 @@ suffix = (number % 100 === 13) ? th : rd; break; default: - suffix = 'th'; + suffix = th; break; }