pull/3/head
Jim Heising 2013-10-31 10:34:38 -07:00
parent 10d6493ed6
commit f42ff44341
3 changed files with 19 additions and 17 deletions

BIN
img/dash-logo.png 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
img/main-logo.png 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -118,25 +118,27 @@ var deccoboard = (function()
{
replacementString = lastPathObject;
_.each(dataValue, function(value, name)
{
if(_.keys(dataValue).indexOf(replacementString) == -1)
{
_.each(dataValue, function(value, name)
{
if(name != lastPathObject && name.indexOf(lastPathObject) == 0)
{
var followChar = undefined;
if(name != lastPathObject && name.indexOf(lastPathObject) == 0)
{
var followChar = undefined;
if(_.isArray(value))
{
followChar = "[";
}
else if(_.isObject(value))
{
followChar = ".";
}
if(_.isArray(value))
{
followChar = "[";
}
else if(_.isObject(value))
{
followChar = ".";
}
options.push({value: name, follow_char: followChar});
}
});
options.push({value: name, follow_char: followChar});
}
});
}
}
}
}