diff options
-rw-r--r-- | finder_menu.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/finder_menu.js b/finder_menu.js index e6372de..523229c 100644 --- a/finder_menu.js +++ b/finder_menu.js @@ -131,7 +131,7 @@ function ul2finder() * child of parent of the another.
*/
function connected(a,b) {
- if (isparent(a, b) || isparent(b, a)) {
+ if (isparent(a,b) || isparent(b,a)) {
return true;
}
return false;
|