Commit 7dcb21e1ceff7bdae6b06c3ebbc76a07be6d568b
1 parent
c3f504001c
Exists in
master
and in
1 other branch
Agregado componente popover.
Showing
2 changed files
with
11 additions
and
7 deletions
Show diff stats
angular.json
| ... | ... | @@ -27,14 +27,14 @@ |
| 27 | 27 | "src/assets" |
| 28 | 28 | ], |
| 29 | 29 | "styles": [ |
| 30 | - "node_modules/bootstrap/dist/css/bootstrap.min.css", | |
| 31 | - "node_modules/font-awesome/css/font-awesome.min.css", | |
| 30 | + "./node_modules/bootstrap/dist/css/bootstrap.min.css", | |
| 31 | + "./node_modules/font-awesome/css/font-awesome.min.css", | |
| 32 | 32 | "src/styles.scss" |
| 33 | 33 | ], |
| 34 | 34 | "scripts": [ |
| 35 | - "node_modules/jquery/dist/jquery.min.js", | |
| 36 | - "node_modules/popper.js/dist/umd/popper.min.js", | |
| 37 | - "node_modules/bootstrap/dist/js/bootstrap.min.js" | |
| 35 | + "./node_modules/jquery/dist/jquery.min.js", | |
| 36 | + "./node_modules/popper.js/dist/umd/popper.min.js", | |
| 37 | + "./node_modules/bootstrap/dist/js/bootstrap.min.js" | |
| 38 | 38 | ] |
| 39 | 39 | }, |
| 40 | 40 | "configurations": { |
| ... | ... | @@ -93,6 +93,7 @@ |
| 93 | 93 | "src/assets" |
| 94 | 94 | ], |
| 95 | 95 | "styles": [ |
| 96 | + "./node_modules/bootstrap/dist/css/bootstrap.min.css", | |
| 96 | 97 | "src/styles.scss" |
| 97 | 98 | ], |
| 98 | 99 | "scripts": [] |
| ... | ... | @@ -124,6 +125,7 @@ |
| 124 | 125 | } |
| 125 | 126 | } |
| 126 | 127 | } |
| 127 | - }}, | |
| 128 | + } | |
| 129 | + }, | |
| 128 | 130 | "defaultProject": "autoservicio" |
| 129 | 131 | } |
| 130 | 132 | \ No newline at end of file |
src/app/app.module.ts
| ... | ... | @@ -5,6 +5,7 @@ import { AppRoutingModule } from './app-routing.module'; |
| 5 | 5 | import { HttpClientModule } from '@angular/common/http'; |
| 6 | 6 | import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
| 7 | 7 | import { TooltipModule } from 'ngx-bootstrap/tooltip'; |
| 8 | +import { PopoverModule } from 'ngx-bootstrap/popover'; | |
| 8 | 9 | //#endregion |
| 9 | 10 | |
| 10 | 11 | //#region COMPONENTS |
| ... | ... | @@ -38,7 +39,8 @@ import { MasterComponent } from './components/master/master.component'; |
| 38 | 39 | FormsModule, |
| 39 | 40 | ReactiveFormsModule, |
| 40 | 41 | ReactiveFormsModule.withConfig({ warnOnNgModelWithFormControl: 'never' }), |
| 41 | - TooltipModule.forRoot() | |
| 42 | + TooltipModule.forRoot(), | |
| 43 | + PopoverModule.forRoot() | |
| 42 | 44 | ], |
| 43 | 45 | providers: [], |
| 44 | 46 | bootstrap: [AppComponent] |