Skip to content

Commit

Permalink
Add missed property for matrixdropdowncolumn and increase the version.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtelnov committed Jun 6, 2016
1 parent 59fb024 commit 6dd6870
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var gulp = require('gulp'),

var Server = require("karma").Server;

var libraryVersion = "0.9.7";
var libraryVersion = "0.9.8";

var paths = {
webroot: "./" + project.webroot + "/",
Expand Down
2 changes: 1 addition & 1 deletion packages/survey-knockout-bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "survey-knockout-bootstrap",
"version": "0.9.7",
"version": "0.9.8",
"description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
"keywords": [
"Survey",
Expand Down
2 changes: 1 addition & 1 deletion packages/survey-knockout/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "survey-knockout",
"version": "0.9.7",
"version": "0.9.8",
"description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
"keywords": [
"Survey",
Expand Down
2 changes: 1 addition & 1 deletion packages/survey-react-bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "survey-react-bootstrap",
"version": "0.9.7",
"version": "0.9.8",
"description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
"keywords": [
"Survey",
Expand Down
2 changes: 1 addition & 1 deletion packages/survey-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "survey-react",
"version": "0.9.7",
"version": "0.9.8",
"description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
"keywords": [
"Survey",
Expand Down
2 changes: 1 addition & 1 deletion src/question_matrixdropdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ module Survey {
this.isRowChanging = false;
}
}
JsonObject.metaData.addClass("matrixdropdowncolumn", ["name", "title", "choices:itemvalues", "optionsCaption", "cellType"], function () { return new MatrixDropdownColumn(""); });
JsonObject.metaData.addClass("matrixdropdowncolumn", ["name", "title", "choices:itemvalues", "optionsCaption", "cellType", "colCount"], function () { return new MatrixDropdownColumn(""); });
JsonObject.metaData.setPropertyValues("matrixdropdowncolumn", "cellType", null, "dropdown");
JsonObject.metaData.setPropertyChoices("matrixdropdowncolumn", "cellType", ["dropdown", "checkbox", "radiogroup", "text", "comment"]);
JsonObject.metaData.setPropertyValues("matrixdropdowncolumn", "colCount", null, 0);
Expand Down

0 comments on commit 6dd6870

Please sign in to comment.