Skip to content

Commit

Permalink
whitespace change
Browse files Browse the repository at this point in the history
  • Loading branch information
mduvall committed Nov 26, 2013
1 parent 3645566 commit 316ab39
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/grande.js
Original file line number Diff line number Diff line change
Expand Up @@ -498,9 +498,10 @@
}

function getParent(node, condition, returnCallback) {
if (node === null){
if (node === null) {
return;
}

while (node.parentNode) {
if (condition(node)) {
return returnCallback(node);
Expand Down

0 comments on commit 316ab39

Please sign in to comment.