Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
stw
stwkit
Commits
14d0d1e2
Commit
14d0d1e2
authored
Oct 30, 2017
by
Tomas Pettersson
🏸
Browse files
period fixes
parent
1e9e0747
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
src/components/cards.js
View file @
14d0d1e2
...
...
@@ -589,8 +589,8 @@ var STWkit;
PeriodCard
.
prototype
.
changeFn
=
function
(
changeCard
)
{
var
self
=
this
;
if
((
typeof
changeCard
.
obsDateInput
!==
'
undefined
'
)
&&
(
typeof
changeCard
.
obsTimeInput
!==
'
undefined
'
))
{
self
.
startDateInput
=
changeCard
.
obsDateInput
.
value
;
self
.
startTimeInput
=
changeCard
.
obsTimeInput
.
value
;
self
.
startDateInput
.
value
=
changeCard
.
obsDateInput
.
value
;
self
.
startTimeInput
.
value
=
changeCard
.
obsTimeInput
.
value
;
self
.
updateFromStartDate
();
}
};
...
...
src/components/cards.js.map
View file @
14d0d1e2
This diff is collapsed.
Click to expand it.
src/components/cards.ts
View file @
14d0d1e2
...
...
@@ -651,8 +651,8 @@ module STWkit {
public
changeFn
(
changeCard
)
{
var
self
=
this
;
if
((
typeof
changeCard
.
obsDateInput
!==
'
undefined
'
)
&&
(
typeof
changeCard
.
obsTimeInput
!==
'
undefined
'
))
{
self
.
startDateInput
=
changeCard
.
obsDateInput
.
value
;
self
.
startTimeInput
=
changeCard
.
obsTimeInput
.
value
;
self
.
startDateInput
.
value
=
changeCard
.
obsDateInput
.
value
;
self
.
startTimeInput
.
value
=
changeCard
.
obsTimeInput
.
value
;
self
.
updateFromStartDate
();
}
}
...
...
Write
Preview
Supports
Markdown
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