1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 09:42:28 +01:00

Whitespace formatting fixes.

This commit is contained in:
Doug Kearns
2009-03-20 00:48:41 +11:00
parent 122657730a
commit 56ee77ba4f
2 changed files with 21 additions and 18 deletions

View File

@@ -1399,13 +1399,13 @@ function Completion() //{{{
}
else if (args.completeArg == 1)
{
context.title = ["Albums by "+args[0]];
context.title = ["Albums by " + args[0]];
context.completions = getAlbums(args[0]);
}
else if (args.completeArg == 2)
{
context.title = ["Tracks from "+args[1]+" by "+args[0]];
context.completions = getTracks(args[0],args[1]);
context.title = ["Tracks from " + args[1] + " by " + args[0]];
context.completions = getTracks(args[0], args[1]);
}
},