From 7dcb21e1ceff7bdae6b06c3ebbc76a07be6d568b Mon Sep 17 00:00:00 2001 From: mpuebla Date: Mon, 12 Aug 2019 09:41:31 -0300 Subject: [PATCH] Agregado componente popover. --- angular.json | 14 ++++++++------ src/app/app.module.ts | 4 +++- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/angular.json b/angular.json index 7dac3fc..51908c6 100644 --- a/angular.json +++ b/angular.json @@ -27,14 +27,14 @@ "src/assets" ], "styles": [ - "node_modules/bootstrap/dist/css/bootstrap.min.css", - "node_modules/font-awesome/css/font-awesome.min.css", + "./node_modules/bootstrap/dist/css/bootstrap.min.css", + "./node_modules/font-awesome/css/font-awesome.min.css", "src/styles.scss" ], "scripts": [ - "node_modules/jquery/dist/jquery.min.js", - "node_modules/popper.js/dist/umd/popper.min.js", - "node_modules/bootstrap/dist/js/bootstrap.min.js" + "./node_modules/jquery/dist/jquery.min.js", + "./node_modules/popper.js/dist/umd/popper.min.js", + "./node_modules/bootstrap/dist/js/bootstrap.min.js" ] }, "configurations": { @@ -93,6 +93,7 @@ "src/assets" ], "styles": [ + "./node_modules/bootstrap/dist/css/bootstrap.min.css", "src/styles.scss" ], "scripts": [] @@ -124,6 +125,7 @@ } } } - }}, + } + }, "defaultProject": "autoservicio" } \ No newline at end of file diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 6cc89ab..da80a31 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -5,6 +5,7 @@ import { AppRoutingModule } from './app-routing.module'; import { HttpClientModule } from '@angular/common/http'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { TooltipModule } from 'ngx-bootstrap/tooltip'; +import { PopoverModule } from 'ngx-bootstrap/popover'; //#endregion //#region COMPONENTS @@ -38,7 +39,8 @@ import { MasterComponent } from './components/master/master.component'; FormsModule, ReactiveFormsModule, ReactiveFormsModule.withConfig({ warnOnNgModelWithFormControl: 'never' }), - TooltipModule.forRoot() + TooltipModule.forRoot(), + PopoverModule.forRoot() ], providers: [], bootstrap: [AppComponent] -- 1.9.1