Skip to content

Commit 53baee6

Browse files
Add Data List Directive
1 parent 60f5812 commit 53baee6

16 files changed

+1383
-4
lines changed

Gruntfile.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ module.exports = function (grunt) {
116116
'lib/patternfly/components/d3/d3.js',
117117
'lib/angular/angular.js',
118118
'lib/angular-animate/angular-animate.js',
119+
'lib/lodash/lodash.min.js',
119120
'dist/angular-patternfly.js',
120121
'lib/patternfly/dist/js/patternfly.js'],
121122
html5Mode: false,
@@ -156,6 +157,11 @@ module.exports = function (grunt) {
156157
cwd: 'src/',
157158
src: ['charts/**/*.html'],
158159
dest: 'templates/charts.js'
160+
},
161+
'patternfly.views': {
162+
cwd: 'src/',
163+
src: ['views/**/*.html'],
164+
dest: 'templates/views.js'
159165
}
160166
},
161167
// ng-annotate tries to make the code safe for minification automatically

bower.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"angular-sanitize": "1.3.*",
4141
"angular-touch": "1.3.*",
4242
"angular-route": "1.3.*",
43+
"lodash": "3.x",
4344
"patternfly": "~2.0.0"
4445
}
4546
}

0 commit comments

Comments
 (0)