Last active
April 27, 2018 12:35
-
-
Save eestein/486c95133606f36ecb00b45afbebdf08 to your computer and use it in GitHub Desktop.
Revisions
-
eestein revised this gist
Apr 27, 2018 . 1 changed file with 4 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -15,9 +15,8 @@ AppComponent.decorators = [ { type: core.Component, args: [{ selector: 'app-root', template: '<div style="text-align:center"><h1>Welcome to {{ title }}!</h1><img width="300" alt="Angular Logo" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTAgMjUwIj4KICAgIDxwYXRoIGZpbGw9IiNERDAwMzEiIGQ9Ik0xMjUgMzBMMzEuOSA2My4ybDE0LjIgMTIzLjFMMTI1IDIzMGw3OC45LTQzLjcgMTQuMi0xMjMuMXoiIC8+CiAgICA8cGF0aCBmaWxsPSIjQzMwMDJGIiBkPSJNMTI1IDMwdjIyLjItLjFWMjMwbDc4LjktNDMuNyAxNC4yLTEyMy4xTDEyNSAzMHoiIC8+CiAgICA8cGF0aCAgZmlsbD0iI0ZGRkZGRiIgZD0iTTEyNSA1Mi4xTDY2LjggMTgyLjZoMjEuN2wxMS43LTI5LjJoNDkuNGwxMS43IDI5LjJIMTgzTDEyNSA1Mi4xem0xNyA4My4zaC0zNGwxNy00MC45IDE3IDQwLjl6IiAvPgogIDwvc3ZnPg=="></div><h2>Here are some links to help you start:</h2><ul><li><h2><a target="_blank" rel="noopener" href="https://angular.io/tutorial">Tour of Heroes</a></h2></li><li><h2><a target="_blank" rel="noopener" href="https://github.com/angular/angular-cli/wiki">CLI Documentation</a></h2></li><li><h2><a target="_blank" rel="noopener" href="https://blog.angular.io/">Angular blog</a></h2></li></ul>', styles: [''] },] }, ]; return AppComponent; @@ -41,9 +40,8 @@ CompApp1Component.decorators = [ { type: core.Component, args: [{ selector: 'comp-app1', template: '<p>App 1 - Comp 1</p>', styles: [''] },] }, ]; /** @nocollapse */ -
eestein revised this gist
Apr 27, 2018 . 1 changed file with 6 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -15,8 +15,9 @@ AppComponent.decorators = [ { type: core.Component, args: [{ selector: 'app-root', template: '' // templateUrl: './app.component.html', // styleUrls: ['./app.component.css'] },] }, ]; return AppComponent; @@ -40,8 +41,9 @@ CompApp1Component.decorators = [ { type: core.Component, args: [{ selector: 'comp-app1', template: '<p>App 1 - Comp 1</p>' // templateUrl: './comp-app1.component.html', // styleUrls: ['./comp-app1.component.css'] },] }, ]; /** @nocollapse */ -
eestein created this gist
Apr 27, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,85 @@ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/platform-browser')) : typeof define === 'function' && define.amd ? define('app1', ['exports', '@angular/core', '@angular/platform-browser'], factory) : (factory((global.ng = global.ng || {}, global.ng.app1 = {}),global.ng.core,global.ng.platformBrowser)); }(this, (function (exports,core,platformBrowser) { 'use strict'; /** * @fileoverview added by tsickle * @suppress {checkTypes} checked by tsc */ var AppComponent = /** @class */ (function () { function AppComponent() { this.title = 'app'; } AppComponent.decorators = [ { type: core.Component, args: [{ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] },] }, ]; return AppComponent; }()); /** * @fileoverview added by tsickle * @suppress {checkTypes} checked by tsc */ var CompApp1Component = /** @class */ (function () { function CompApp1Component() { } /** * @return {?} */ CompApp1Component.prototype.ngOnInit = /** * @return {?} */ function () { }; CompApp1Component.decorators = [ { type: core.Component, args: [{ selector: 'comp-app1', templateUrl: './comp-app1.component.html', styleUrls: ['./comp-app1.component.css'] },] }, ]; /** @nocollapse */ CompApp1Component.ctorParameters = function () { return []; }; return CompApp1Component; }()); /** * @fileoverview added by tsickle * @suppress {checkTypes} checked by tsc */ var AppModule = /** @class */ (function () { function AppModule() { } AppModule.decorators = [ { type: core.NgModule, args: [{ declarations: [ AppComponent, CompApp1Component ], imports: [ platformBrowser.BrowserModule ], entryComponents: [ CompApp1Component ], providers: [], bootstrap: [AppComponent] },] }, ]; return AppModule; }()); exports.AppModule = AppModule; exports.ɵa = AppComponent; exports.ɵb = CompApp1Component; Object.defineProperty(exports, '__esModule', { value: true }); }))); //# sourceMappingURL=app1.umd.js.map