Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 68e4fa2

Browse files
Removed form description
1 parent d79291a commit 68e4fa2

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 2.0.26-alpha - 2014-05-29 - IR228 - Niall Donnelly
44

55
* 7324 - Fixed map rendering and checkboxed from drafts.
6+
* 7093 - Removed for description from the form display.
67

78
## 2.0.25-alpha - 2014-05-29 - IR228 - Niall Donnelly
89

src/appforms/src/backbone/040-view04Form.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ var FormView = BaseView.extend({
77
templates: {
88
formLogo: '<div class="fh_appform_logo_container" style="text-align:center;"><div class="fh_appform_logo"></div></div>',
99
formTitle: '<div class="fh_appform_form_title"><%= title %></div>',
10-
formDescription: '<div class="fh_appform_form_description"><%= description %></div>',
1110
formContainer: '<div id="fh_appform_container" class="fh_appform_form_area fh_appform_container"></div>',
1211
buttons: '<div id="fh_appform_navigation_buttons" class="fh_appform_button_bar"><button class="fh_appform_button_saveDraft fh_appform_hidden fh_appform_button_main fh_appform_button_action">Save Draft</button><button class="fh_appform_button_previous fh_appform_hidden fh_appform_button_default">Previous</button><button class="fh_appform_button_next fh_appform_hidden fh_appform_button_default">Next</button><button class="fh_appform_button_submit fh_appform_hidden fh_appform_button_action">Submit</button></div>'
1312
},
@@ -108,9 +107,6 @@ var FormView = BaseView.extend({
108107
self.$el.find(this.elementNames.formContainer).append(_.template(this.templates.formTitle, {
109108
title: this.model.getName()
110109
}));
111-
self.$el.find(this.elementNames.formContainer).append(_.template(this.templates.formDescription, {
112-
description: this.model.getDescription()
113-
}));
114110

115111
if (!params.submission) {
116112
params.submission = self.model.newSubmission();

0 commit comments

Comments
 (0)