angular-ui / bootstrap

PLEASE READ THE PROJECT STATUS BELOW. Native AngularJS (Angular) directives for Bootstrap. Smaller footprint (20kB gzipped), no 3rd party JS dependencies (jQuery, bootstrap JS) required. Please read the README.md file before submitting an issue!
http://angular-ui.github.io/bootstrap/
MIT License
14.3k stars 6.74k forks source link

Slider are not showing it is coming in a single list #6686

Closed tanmay9dutta closed 6 years ago

tanmay9dutta commented 6 years ago

My app.module.

import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { AppComponent } from './app.component'; import { RouterModule } from '@angular/router'; import { FormsModule } from '@angular/forms'; import { routes } from './app.routing'; import { HeaderComponent } from './shared/header/header.component'; import { FooterComponent } from './shared/footer/footer.component'; import { enableProdMode } from '@angular/core'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; debugger; enableProdMode(); @NgModule({ imports: [BrowserModule, NgbModule.forRoot(), FormsModule, RouterModule.forRoot(routes)], declarations: [AppComponent, FooterComponent, HeaderComponent], bootstrap: [AppComponent], providers: [NgbModule] }) export class AppModule { constructor(config: NgbModule) { // customize default values of carousels used by this component tree

}

}

app.component.html

Random first slide Random second slide Random third slide

app.component.ts

import { Component } from '@angular/core'; import { OnInit } from '@angular/core';

@Component({ selector: 'app-initializer', templateUrl: './app.component.html' })

export class AppComponent { title = 'abc';

}

index.html

<!doctype html>

Abc
icfantv commented 6 years ago

Closing this as this project is no longer being maintained, per the README and the ISSUE_TEMPLATE.