Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
doodle
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
CI / CD
CI / CD
Pipelines
Schedules
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Arnaud
doodle
Commits
cb2eac8d
Commit
cb2eac8d
authored
Sep 09, 2022
by
crosf32
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix flatpickr minDate
parent
177f7aaa
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
doodle.js
dist/js/doodle.js
+3
-1
index.html
test/index.html
+1
-0
No files found.
dist/js/doodle.js
View file @
cb2eac8d
...
...
@@ -403,13 +403,15 @@
flatpickr
(
document
.
querySelector
(
'#myDatepicker'
),
{
dateFormat
:
'm/d/Y'
,
minDate
:
date
.
getMinutes
()
+
'/'
+
date
.
getMonth
()
+
'/'
+
date
.
getFullYear
(),
locale
:
'fr'
,
minDate
:
'today'
,
enableTime
:
false
,
onClose
:
this
.
eventAddDate
})
flatpickr
(
document
.
querySelector
(
'#timepicker'
),
{
dateFormat
:
'H:i'
,
locale
:
'fr'
,
noCalendar
:
true
,
enableTime
:
true
,
onClose
:
this
.
eventAddHour
...
...
test/index.html
View file @
cb2eac8d
...
...
@@ -49,6 +49,7 @@
<script
src=
"../node_modules/moment/min/moment.min.js"
></script>
<script
src=
"../node_modules/moment/min/moment-with-locales.js"
></script>
<script
src=
"../node_modules/flatpickr/dist/flatpickr.js"
></script>
<script
src=
"../node_modules/flatpickr/dist/l10n/fr.js"
></script>
<script
src=
"../dist/js/doodle.js"
type=
"text/javascript"
></script>
<script
src=
"../test/js/app.js"
type=
"text/javascript"
></script>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment