Domanda

Assuming one has already built a simple front end in angularjs, what are the steps needed to follow in order to include angularjs-bootstrap in front end and use the corresponding directives and css?

È stato utile?

Soluzione

Add 'ui.bootstrap' to angular.module:

var myModule = angular.module('myApp', ['ui.bootstrap']);

and sure import bootstrap javascript + css to your header

Altri suggerimenti

Dependency Injection is one of the best part of AngularJs MV * framework. You can inject it in the cntroller

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top