Skip to content

Commit 1c3631a

Browse files
author
Dmitry Kuzin (DevExpress)
committed
Merge branch 'master' of https://github.com/surveyjs/widgets
2 parents 8433f6b + 381da44 commit 1c3631a

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ addons:
1313
firefox: latest
1414
chrome: stable
1515

16+
services:
17+
- xvfb
18+
1619
before_script:
1720
- "export DISPLAY=:99.0"
18-
- "sh -e /etc/init.d/xvfb start"
1921
- sleep 3
2022
- npm install -g [email protected]
2123

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+
<a name="1.1.3"></a>
6+
## [1.1.3](https://github.com/surveyjs/widgets/compare/v1.1.2...v1.1.3) (2019-08-06)
7+
8+
9+
10+
<a name="1.1.2"></a>
11+
## [1.1.2](https://github.com/surveyjs/widgets/compare/v1.1.1...v1.1.2) (2019-07-30)
12+
13+
14+
515
<a name="1.1.1"></a>
616
## [1.1.1](https://github.com/surveyjs/widgets/compare/v1.1.0...v1.1.1) (2019-07-23)
717

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.1.1",
3+
"version": "1.1.3",
44
"scripts": {
55
"start": "npm run build && live-server",
66
"watch": "webpack --env.buildType dev --watch",

src/icheck.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function init(Survey, $) {
7272
});
7373
$el.find("input").on("ifUnchecked", function(event) {
7474
if (question.getType() === "checkbox") {
75-
var oldValue = question.value || [];
75+
var oldValue = (question.value || []).slice();
7676
var index = oldValue.indexOf(event.target.value);
7777
if (index >= 0) {
7878
oldValue.splice(index, 1);

src/pretty-checkbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ function init(Survey) {
134134
if (choiceItem.locText.hasHtml) {
135135
label.innerHTML = choiceItem.locText.html;
136136
} else {
137-
label.textContent = choiceItem.locText.text;
137+
label.textContent = choiceItem.locText.renderedText;
138138
}
139139
stateRoot.appendChild(label);
140140

0 commit comments

Comments
 (0)