You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
422 B
13 lines
422 B
3 years ago
|
module NumericQuestionsHelper
|
||
|
def numeric_question_html_attributes(question)
|
||
|
return {} if question["fields-to-add"].blank? || question["result-field"].blank?
|
||
|
|
||
|
{
|
||
|
"data-controller": "numeric-question",
|
||
|
"data-action": "numeric-question#calculateFields",
|
||
|
"data-target": "#{question['result-field'].to_s.dasherize}-field",
|
||
|
"data-calculated": question["fields-to-add"].to_json,
|
||
|
}
|
||
|
end
|
||
|
end
|