summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries <dries@buytaert.net>2012-01-29 08:25:27 -0500
committerDries <dries@buytaert.net>2012-01-29 08:25:27 -0500
commit14e1deb866c79781ee880ee1e42489f1b0d59ccc (patch)
tree713abb7bea9ca856fa9f35c6deebed26f3c922bb /modules
parent055da3f730b0030e8acb8a92c55c343ab5a7790b (diff)
downloadbrdo-14e1deb866c79781ee880ee1e42489f1b0d59ccc.tar.gz
brdo-14e1deb866c79781ee880ee1e42489f1b0d59ccc.tar.bz2
- Patch #1399496 by droplet: JS semicolon to following code standard .
Diffstat (limited to 'modules')
-rw-r--r--modules/menu/menu.admin.js4
-rw-r--r--modules/shortcut/shortcut.admin.js2
-rw-r--r--modules/user/user.js2
3 files changed, 4 insertions, 4 deletions
diff --git a/modules/menu/menu.admin.js b/modules/menu/menu.admin.js
index 15bc2e7c7..4a2c73231 100644
--- a/modules/menu/menu.admin.js
+++ b/modules/menu/menu.admin.js
@@ -10,7 +10,7 @@
});
});
}
- }
+ };
/**
* Function to set the options of the menu parent item dropdown.
@@ -42,6 +42,6 @@
});
}
});
- }
+ };
})(jQuery);
diff --git a/modules/shortcut/shortcut.admin.js b/modules/shortcut/shortcut.admin.js
index 6a6d7fe01..453a40231 100644
--- a/modules/shortcut/shortcut.admin.js
+++ b/modules/shortcut/shortcut.admin.js
@@ -82,7 +82,7 @@ Drupal.behaviors.shortcutDrag = {
var statusName = statusRow.className.replace(/([^ ]+[ ]+)*shortcut-status-([^ ]+)([ ]+[^ ]+)*/, '$2');
var statusField = $('select.shortcut-status-select', rowObject.element);
statusField.val(statusName);
- };
+ }
tableDrag.restripeTable = function () {
// :even and :odd are reversed because jQuery counts from 0 and
diff --git a/modules/user/user.js b/modules/user/user.js
index 44c00f344..73af27e5d 100644
--- a/modules/user/user.js
+++ b/modules/user/user.js
@@ -168,7 +168,7 @@ Drupal.evaluatePasswordStrength = function (password, translate) {
// Assemble the final message.
msg = translate.hasWeaknesses + '<ul><li>' + msg.join('</li><li>') + '</li></ul>';
- return { strength: strength, message: msg, indicatorText: indicatorText }
+ return { strength: strength, message: msg, indicatorText: indicatorText };
};