@@ -52,12 +52,26 @@ Note:
52
52
$ bower install angular --save
53
53
$ bower install angular-patternfly --save
54
54
55
- 2 . Add the following CSS include to your HTML file(s):
55
+ 2 . Add the core Patternfly CSS and script includes to your HTML file(s):
56
+
57
+ Please see: https://github.com/patternfly/patternfly/blob/master/QUICKSTART.md
58
+
59
+ 3 . Add the following CSS include to your HTML file(s):
56
60
57
61
<!-- Angular-PatternFly Styles -->
58
62
<link rel="stylesheet" href="bower_components/angular-patternfly/dist/styles/angular-patternfly.min.css" />
59
63
60
- 3 . Add the following script includes to your HTML file(s), adjusting where necessary to pull in only what you need:
64
+ 4 . Add the following script includes to your HTML file(s), adjusting where necessary to pull in only what you need:
65
+
66
+ <!-- Angular -->
67
+ <script src="bower_components/angular/angular.min.js"></script>
68
+
69
+ <!-- Angular-Bootstrap -->
70
+ <script src="bower_components/angular-bootstrap/ui-bootstrap.min.js"></script>
71
+ <script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
72
+
73
+ <!-- Angular-Sanitize -->
74
+ <script src="bower_components/angular-sanitize/angular-sanitize.min.js"></script>
61
75
62
76
<!-- Angular-PatternFly -->
63
77
<script src="bower_components/angular-patternfly/dist/angular-patternfly.min.js"></script>
66
80
<script src="bower_components/patternfly/components/c3/c3.min.js"></script>
67
81
<script src="bower_components/patternfly/components/d3/d3.min.js"></script>
68
82
69
- 4 . (optional) The 'patternfly.charts' module is not a dependency in the default angular 'patternfly' module.
83
+ 5 . (optional) The 'patternfly.charts' module is not a dependency in the default angular 'patternfly' module.
70
84
In order to use patternfly charts you must add 'patternfly.charts' as a dependency in your application:
71
85
72
86
my-app.module.js:
0 commit comments