Removed address from footer. Made copyright a link. Refactored layout to use TB columns. Added media queries to stack columns and center things on small viewports.

This commit is contained in:
Chris Houseknecht
2013-12-20 15:22:06 +00:00
parent af5bb93864
commit 44574de083
9 changed files with 151 additions and 116 deletions

View File

@@ -5,7 +5,7 @@
*
* InventoryTree.js
*
* Build data for the tree selector table used on inventory detail page.
* Build data for the tree selector table used on inventory detail page.
*
*/
@@ -197,7 +197,8 @@ angular.module('InventoryTree', ['Utilities', 'RestServices'])
id: id,
event_level: level,
ngicon: (sorted[i].children.length > 0) ? 'icon-collapse-alt' : null,
related: { children: (sorted[i].children.length > 0) ? sorted[i].related.children : '' }
related: { children: (sorted[i].children.length > 0) ? sorted[i].related.children : '' },
status: sorted[i].summary_fields.inventory_source.status
}
groups.push(group);
id++;