[Tree] Begin using mct-tree for tree representation

This commit is contained in:
Victor Woeltjen
2016-03-11 14:23:08 -08:00
parent cbd9509260
commit d4b15525ca
7 changed files with 14 additions and 23 deletions

View File

@@ -30,8 +30,7 @@ define([
var $ = angular.element.bind(angular);
function TreeView() {
this.ul = $('<ul>');
this.ul.addClass('tree');
this.ul = $('<ul class="tree"></ul>');
this.nodeViews = [];
}