Skip to content

Commit

Permalink
Update mailjet_subscription.module
Browse files Browse the repository at this point in the history
  • Loading branch information
mskochev authored Feb 19, 2019
1 parent 86dcbcc commit dee3440
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/mailjet_subscription/mailjet_subscription.module
Original file line number Diff line number Diff line change
Expand Up @@ -432,14 +432,14 @@ function mailjet_subscription_form($form, &$form_state) {

$form['field_js'] = array(
'#type' => 'textarea',
'#title' => t('Enter your inline JS here.'),
'#title' => t('Enter your inline JS'),
'#description' => '',
'#default_value' => (isset($default_field_js) && !empty($default_field_js)) ? $default_field_js : FALSE,
);

$form['field_css'] = array(
'#type' => 'textarea',
'#title' => t('Enter your inline CSS here.'),
'#title' => t('Enter your inline CSS'),
'#description' => '',
'#default_value' => (isset($default_field_css) && !empty($default_field_css)) ? $default_field_css : FALSE,
);
Expand Down

0 comments on commit dee3440

Please sign in to comment.