This repository was archived by the owner on Apr 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
src/appforms/src/backbone Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 3
3
## 2.0.26-alpha - 2014-05-29 - IR228 - Niall Donnelly
4
4
5
5
* 7324 - Fixed map rendering and checkboxed from drafts.
6
+ * 7093 - Removed for description from the form display.
6
7
7
8
## 2.0.25-alpha - 2014-05-29 - IR228 - Niall Donnelly
8
9
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ var FormView = BaseView.extend({
7
7
templates : {
8
8
formLogo : '<div class="fh_appform_logo_container" style="text-align:center;"><div class="fh_appform_logo"></div></div>' ,
9
9
formTitle : '<div class="fh_appform_form_title"><%= title %></div>' ,
10
- formDescription : '<div class="fh_appform_form_description"><%= description %></div>' ,
11
10
formContainer : '<div id="fh_appform_container" class="fh_appform_form_area fh_appform_container"></div>' ,
12
11
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>'
13
12
} ,
@@ -108,9 +107,6 @@ var FormView = BaseView.extend({
108
107
self . $el . find ( this . elementNames . formContainer ) . append ( _ . template ( this . templates . formTitle , {
109
108
title : this . model . getName ( )
110
109
} ) ) ;
111
- self . $el . find ( this . elementNames . formContainer ) . append ( _ . template ( this . templates . formDescription , {
112
- description : this . model . getDescription ( )
113
- } ) ) ;
114
110
115
111
if ( ! params . submission ) {
116
112
params . submission = self . model . newSubmission ( ) ;
You can’t perform that action at this time.
0 commit comments