Fix extra category error. Clean up code, rename variables, reduce line lengths, fix lint issues.

This commit is contained in:
Sean Lip
2016-06-02 15:51:37 -07:00
parent 4e2d8f1310
commit e8a2d3e2fd
4 changed files with 100 additions and 66 deletions

View File

@@ -109,7 +109,11 @@ blocklyApp.WorkspaceTreeView = ng.core
</div>
</ol>
</li>
<tree-view *ngIf= "block.nextConnection && block.nextConnection.targetBlock()" [block]="block.nextConnection.targetBlock()" [isTopBlock]="false" [level]="level"></tree-view>
<tree-view *ngIf= "block.nextConnection && block.nextConnection.targetBlock()"
[block]="block.nextConnection.targetBlock()"
[isTopBlock]="false"
[level]="level">
</tree-view>
`,
directives: [ng.core.forwardRef(
function() { return blocklyApp.WorkspaceTreeView; }), blocklyApp.FieldView],