Skip to content
Snippets Groups Projects
Commit 86b517cf authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

Merge pull request #1375 from mozilla/issue_1374_array_forEach

Replacing the use of Array.prototype.forEach with _.each, which we are guaranteed to have.
parents be0dac53 e892635a
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,7 @@ BrowserID.Modules.Authenticate = (function() {
}
function showHint(showSelector, callback) {
hints.forEach(function(className) {
_.each(hints, function(className) {
if(className != showSelector) {
$("." + className).not("." + showSelector).hide();
}
......
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