Skip to content

Commit 0e92466

Browse files
committed
Merge branch 'master' of https://github.com/surveyjs/widgets
2 parents 91e5b1a + 6521c8d commit 0e92466

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [1.9.56](https://github.com/surveyjs/custom-widgets/compare/v1.9.55...v1.9.56) (2022-11-01)
6+
7+
### [1.9.55](https://github.com/surveyjs/custom-widgets/compare/v1.9.54...v1.9.55) (2022-10-25)
8+
9+
### [1.9.54](https://github.com/surveyjs/custom-widgets/compare/v1.9.53...v1.9.54) (2022-10-18)
10+
11+
### [1.9.53](https://github.com/surveyjs/custom-widgets/compare/v1.9.52...v1.9.53) (2022-10-11)
12+
13+
### [1.9.52](https://github.com/surveyjs/custom-widgets/compare/v1.9.51...v1.9.52) (2022-10-04)
14+
515
### [1.9.51](https://github.com/surveyjs/custom-widgets/compare/v1.9.50...v1.9.51) (2022-09-29)
616

717
### [1.9.50](https://github.com/surveyjs/custom-widgets/compare/v1.9.49...v1.9.50) (2022-09-20)

devops-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ trigger:
1010
- v*.*.*
1111

1212
pool:
13-
vmImage: "Ubuntu-18.04"
13+
vmImage: "Ubuntu-20.04"
1414

1515
steps:
1616
- task: NodeTool@0

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "surveyjs-widgets",
3-
"version": "1.9.51",
3+
"version": "1.9.56",
44
"scripts": {
55
"start": "npm run build && live-server",
66
"watch": "webpack --env buildType=dev --watch",

src/jquery-ui-datepicker.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,12 @@ function init(Survey, $) {
112112
return result;
113113
};
114114
function setDateIntoQuestion() {
115-
question.value = $el.datepicker('getDate');
115+
var val = $el.datepicker('getDate');
116+
var d = new Date();
117+
val.setHours(d.getHours());
118+
val.setMinutes(d.getMinutes());
119+
val.setSeconds(d.getSeconds());
120+
question.value = val;
116121
}
117122
var pickerWidget = $el.datepicker(config).on("change", function (e) {
118123
setDateIntoQuestion();

0 commit comments

Comments
 (0)