1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-21 23:05:46 +01:00
This commit is contained in:
Kris Maglione
2008-12-18 18:21:01 -05:00
parent ac0b476988
commit c094a2dd2b
6 changed files with 87 additions and 35 deletions

View File

@@ -99,8 +99,7 @@ function IO() //{{{
return [];
else
// empty list item means the current directory
return list.replace(/,$/, "")
.split(",")
return list.replace(/,$/, "").split(",")
.map(function (dir) dir == "" ? io.getCurrentDirectory().path : dir);
}