Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
bbbc0cbd
Commit
bbbc0cbd
authored
Aug 09, 2017
by
Tim Zallmann
Committed by
Jose Ivan Vargas
Aug 11, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge branch 'pikaday-undefined-fix' into 'master'
Fix Pikaday being undefined Closes #36207 See merge request !13422
parent
4c4181df
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
app/assets/javascripts/due_date_select.js
app/assets/javascripts/due_date_select.js
+1
-1
app/assets/javascripts/issuable_form.js
app/assets/javascripts/issuable_form.js
+1
-1
app/assets/javascripts/main.js
app/assets/javascripts/main.js
+0
-2
app/assets/javascripts/member_expiration_date.js
app/assets/javascripts/member_expiration_date.js
+3
-1
No files found.
app/assets/javascripts/due_date_select.js
View file @
bbbc0cbd
/* eslint-disable wrap-iife, func-names, space-before-function-paren, comma-dangle, prefer-template, consistent-return, class-methods-use-this, arrow-body-style, no-unused-vars, no-underscore-dangle, no-new, max-len, no-sequences, no-unused-expressions, no-param-reassign */
/* global dateFormat */
/* global Pikaday */
import
Pikaday
from
'
pikaday
'
;
import
DateFix
from
'
./lib/utils/datefix
'
;
class
DueDateSelect
{
...
...
app/assets/javascripts/issuable_form.js
View file @
bbbc0cbd
...
...
@@ -2,8 +2,8 @@
/* global GitLab */
/* global Autosave */
/* global dateFormat */
/* global Pikaday */
import
Pikaday
from
'
pikaday
'
;
import
UsersSelect
from
'
./users_select
'
;
import
GfmAutoComplete
from
'
./gfm_auto_complete
'
;
import
ZenMode
from
'
./zen_mode
'
;
...
...
app/assets/javascripts/main.js
View file @
bbbc0cbd
...
...
@@ -7,7 +7,6 @@
import
jQuery
from
'
jquery
'
;
import
_
from
'
underscore
'
;
import
Cookies
from
'
js-cookie
'
;
import
Pikaday
from
'
pikaday
'
;
import
Dropzone
from
'
dropzone
'
;
import
Sortable
from
'
vendor/Sortable
'
;
...
...
@@ -20,7 +19,6 @@ import 'vendor/fuzzaldrin-plus';
window
.
jQuery
=
jQuery
;
window
.
$
=
jQuery
;
window
.
_
=
_
;
window
.
Pikaday
=
Pikaday
;
window
.
Dropzone
=
Dropzone
;
window
.
Sortable
=
Sortable
;
...
...
app/assets/javascripts/member_expiration_date.js
View file @
bbbc0cbd
/* global Pikaday */
/* global dateFormat */
import
Pikaday
from
'
pikaday
'
;
(()
=>
{
// Add datepickers to all `js-access-expiration-date` elements. If those elements are
// children of an element with the `clearable-input` class, and have a sibling
...
...
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