Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

Commit

Permalink
ISAICP-4732: Adhere to coding standards.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrenssen committed Dec 13, 2019
1 parent eedba6c commit 5dde3c0
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* @file
* JavaScript code for the My Subscriptions form.
*/

(function ($, Drupal) {
Drupal.behaviors.joinupSubscriptionMySubscriptionsBehavior = {
attach: function (context, settings) {
Expand All @@ -20,7 +25,7 @@
var subscription_status = [];

// Get current status of checkboxes.
$(this).closest('.form__subscribe-types-inner').find('input.form-checkbox').each(function() {
$(this).closest('.form__subscribe-types-inner').find('input.form-checkbox').each(function () {
subscription_status.push($(this).prop('checked'));
});

Expand Down

0 comments on commit 5dde3c0

Please sign in to comment.