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 /webpack.config.js | |
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 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/webpack.config.js b/webpack.config.js index 70a5029e63..85a046892b 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -102,10 +102,6 @@ module.exports = { loader: 'vue-loader', }, { - test: require.resolve('jquery-datetimepicker'), - use: 'imports-loader?define=>false,exports=>false', - }, - { test: /\.worker\.js$/, exclude: /monaco/, use: [ |