December 2017
Beginner
372 pages
10h 32m
English
This is the heart of our application. This file contains all our application code. The Angular CLI compiles all our code files and concatenates them together in the main bundle file. If you open this file, you will be able to see all our code, the Board component, the Task component, the SubTask component, and even our Trello service, and custom sort pipe as shown in the following snippet:
....var BoardComponent = (function () { function BoardComponent(el, _route, _trelloService) { this.el = el; this._route = _route; this._trelloService = _trelloService; this.board = new __WEBPACK_IMPORTED_MODULE_3__model_board__["a" /* Board */]; this.tasksAdded = 0; this.editingTitle = false; }....
There are a couple of differences ...
Read now
Unlock full access