diff --git a/README.md b/README.md index 37e0c87ca..c53d9f1aa 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ [![Angular Logo](./logo-angular.jpg)](https://angular.io/) [![Electron Logo](./logo-electron.jpg)](https://electron.atom.io/) - [![Travis Build Status][build-badge]][build] [![Dependencies Status][dependencyci-badge]][dependencyci] [![Make a pull request][prs-badge]][prs] @@ -16,10 +15,10 @@ Bootstrap and package your project with Angular 5(+) and Electron (Typescript + Currently runs with: -- Angular v5.0.1 -- Angular-CLI v1.5.0 -- Electron v1.7.6 -- Electron Packager v9.0.1 +- Angular v5.2.0 +- Angular-CLI v1.6.4 +- Electron v1.7.8 +- Electron Builder v19.45.4 With this sample, you can : diff --git a/src/app/directives/webview.directive.ts b/src/app/directives/webview.directive.ts new file mode 100644 index 000000000..52f05bc1a --- /dev/null +++ b/src/app/directives/webview.directive.ts @@ -0,0 +1,10 @@ +import { Directive } from '@angular/core'; + +@Directive({ + selector: 'webview' +}) +export class WebviewDirective { + + constructor() { } + +}