diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-10-30 17:22:18 +0100 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-10-30 17:22:18 +0100 |
commit | ca5af712bdd620c82a8fc55265ab2afad70121b0 (patch) | |
tree | 1ebc74fb19bc7786e03c177c3e95a7c886799ca2 /ui/widgets/datepicker.js | |
parent | bf0d4c3a06852622487c08991f702f225b9631dd (diff) | |
download | jquery-ui-1.14.1.tar.gz jquery-ui-1.14.1.zip |
1.14.11.14.1
Diffstat (limited to 'ui/widgets/datepicker.js')
-rw-r--r-- | ui/widgets/datepicker.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/widgets/datepicker.js b/ui/widgets/datepicker.js index 323723b89..6d0767d07 100644 --- a/ui/widgets/datepicker.js +++ b/ui/widgets/datepicker.js @@ -1,6 +1,6 @@ /* eslint-disable max-len, camelcase */ /*! - * jQuery UI Datepicker @VERSION + * jQuery UI Datepicker 1.14.1 * https://jqueryui.com * * Copyright OpenJS Foundation and other contributors @@ -36,7 +36,7 @@ } )( function( $ ) { "use strict"; -$.extend( $.ui, { datepicker: { version: "@VERSION" } } ); +$.extend( $.ui, { datepicker: { version: "1.14.1" } } ); var datepicker_instActive; @@ -2230,7 +2230,7 @@ $.fn.datepicker = function( options ) { $.datepicker = new Datepicker(); // singleton instance $.datepicker.initialized = false; $.datepicker.uuid = new Date().getTime(); -$.datepicker.version = "@VERSION"; +$.datepicker.version = "1.14.1"; return $.datepicker; |