Skip to content

Commit

Permalink
Use h4 instead h2 for Start Page in Multi-Page Survey example
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanTsukanov committed Oct 9, 2023
1 parent 23c812e commit 3d3ce37
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion multi-page-survey/angular/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const surveyJson = {
pages: [{
elements: [{
type: "html",
html: "<h2>In this survey, we will ask you a couple questions about your impressions of our product.</h2>"
html: "<h4>In this survey, we will ask you a couple questions about your impressions of our product.</h4>"
}]
}, {
elements: [{
Expand Down
2 changes: 1 addition & 1 deletion multi-page-survey/jquery/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const surveyJson = {
pages: [{
elements: [{
type: "html",
html: "<h2>In this survey, we will ask you a couple questions about your impressions of our product.</h2>"
html: "<h4>In this survey, we will ask you a couple questions about your impressions of our product.</h4>"
}]
}, {
elements: [{
Expand Down
2 changes: 1 addition & 1 deletion multi-page-survey/knockout/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const surveyJson = {
pages: [{
elements: [{
type: "html",
html: "<h2>In this survey, we will ask you a couple questions about your impressions of our product.</h2>"
html: "<h4>In this survey, we will ask you a couple questions about your impressions of our product.</h4>"
}]
}, {
elements: [{
Expand Down
2 changes: 1 addition & 1 deletion multi-page-survey/react/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const surveyJson = {
pages: [{
elements: [{
type: "html",
html: "<h2>In this survey, we will ask you a couple questions about your impressions of our product.</h2>"
html: "<h4>In this survey, we will ask you a couple questions about your impressions of our product.</h4>"
}]
}, {
elements: [{
Expand Down
2 changes: 1 addition & 1 deletion multi-page-survey/vue/src/components/MultiPageSurvey.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const surveyJson = {
pages: [{
elements: [{
type: "html",
html: "<h2>In this survey, we will ask you a couple questions about your impressions of our product.</h2>"
html: "<h4>In this survey, we will ask you a couple questions about your impressions of our product.</h4>"
}]
}, {
elements: [{
Expand Down
2 changes: 1 addition & 1 deletion multi-page-survey/vue3/src/components/MultiPageSurvey.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const surveyJson = {
pages: [{
elements: [{
type: "html",
html: "<h2>In this survey, we will ask you a couple questions about your impressions of our product.</h2>"
html: "<h4>In this survey, we will ask you a couple questions about your impressions of our product.</h4>"
}]
}, {
elements: [{
Expand Down

0 comments on commit 3d3ce37

Please sign in to comment.