diff options
author | silverwind <me@silverwind.io> | 2020-06-10 20:35:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 14:35:27 -0400 |
commit | 628ee1d82ed4afdae8734801be85c57d9a525322 (patch) | |
tree | 95e8448278b7cfe0a885e0e9a300cf1963a861f6 /public | |
parent | 42752f3902f53d96598e5329a30374ecc82c9a19 (diff) | |
download | gitea-628ee1d82ed4afdae8734801be85c57d9a525322.tar.gz gitea-628ee1d82ed4afdae8734801be85c57d9a525322.zip |
Replace jquery-datetimepicker with native date input (#11684)
This removes the jQuery plugin as well as the associated config options.
Native input[type=date] does not require a language attribute as it is
localized by default, except for the placeholder attribute for which I
currently piggy-back the repo.issues.due_date_form localization option.
Implementation should pretty much match GH. Of note is that Safari does
not provide a UI for this input type, but I don't think providing one is
neccessary and GH did not bother either.
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'public')
-rw-r--r-- | public/vendor/librejs.html | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/public/vendor/librejs.html b/public/vendor/librejs.html index 37c25159ad..4397f8a644 100644 --- a/public/vendor/librejs.html +++ b/public/vendor/librejs.html @@ -61,11 +61,6 @@ <td><a href="https://github.com/highlightjs/highlight.js/archive/9.18.0.tar.gz">highlight.js.tar.gz</a></td> </tr> <tr> - <td><a href="../js/datetimepicker.js">jQuery DateTimePicker</a></td> - <td><a href="https://github.com/xdan/datetimepicker/blob/master/MIT-LICENSE.txt">MIT</a></td> - <td><a href="https://github.com/xdan/datetimepicker/archive/master.zip">jquery.datetimepicker.tar.gz</a></td> - </tr> - <tr> <td><a href="./plugins/jquery.minicolors/jquery.minicolors.min.js">jquery.minicolors.min.js</a></td> <td><a href="https://github.com/claviska/jquery-minicolors/blob/master/LICENSE.md">Expat</a></td> <td><a href="https://github.com/claviska/jquery-minicolors/archive/2.2.3.tar.gz">jquery.minicolors-2.2.3.tar.gz</a></td> |