Skip to content
Snippets Groups Projects
Commit e10a7f8b authored by Arne Jørgensen's avatar Arne Jørgensen
Browse files

Only set soft length limit if title has a max length.

parent fd9c53e3
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ function soft_length_limit_field_attach_form($entity_type, $entity, &$form, &$fo
}
}
if (isset($form['title'])) {
if (isset($form['title']) and isset($form['title']['#maxlength'])) {
$form['title']['#attributes']['class'][] = 'soft-length-limit';
$form['title']['#attributes']['data-soft-length-limit'] = $form['title']['#maxlength'];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment