I would like to combine twitter bootstrap with angular stuff. I found bootstrap material design https://github.com/FezVrasta/bootstrap-material-design
Angular material uses the following declarations;
<script src="../bower_components/angular/angular.min.js"></script> <script src="../bower_components/angular-animate/angular-animate.min.js"></script> <script src="../bower_components/angular-aria/angular-aria.min.js"></script> <script src="../bower_components/angular-material/angular-material.min.js"></script>
For boot material, the ads in the documentation look like this:
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Roboto:300,400,500,700"> <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/icon?family=Material+Icons"> <link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="dist/css/bootstrap-material-design.css"> <link rel="stylesheet" type="text/css" href="dist/css/ripples.min.css">
Will there be a conflict if I include all the links? I'm pretty confused about how to combine angular stuff and boot file.
user6064424
source share