Skip to content
This repository has been archived by the owner on Dec 23, 2017. It is now read-only.

Handle miscellaneous F3* forms. #885

Merged
merged 1 commit into from
Oct 22, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion static/js/modules/columns.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ var filings = {
width: '20px',
orderable: false,
render: function(data, type, row, meta) {
return row.form_type && row.form_type.match(/^F3/) ?
return row.form_type && ['F3', 'F3P', 'F3X'].indexOf(row.form_type) !== -1 ?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Identifier 'form_type' is not in camel case.

tables.MODAL_TRIGGER_HTML :
'';
}
Expand Down