Skip to content

Commit 15f688b

Browse files
Merge pull request #247 from patternfly/bump-v3.5.0
Bumped version number to 3.5.0.
2 parents 8918019 + 9e91a3d commit 15f688b

File tree

42 files changed

+1136
-250
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1136
-250
lines changed

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-patternfly",
3-
"version": "3.4.0",
3+
"version": "3.5.0",
44
"authors": [
55
"Red Hat"
66
],
@@ -39,7 +39,7 @@
3939
"angular-sanitize": "1.3.0 - 1.5.*",
4040
"angular-bootstrap": "0.13.x",
4141
"lodash": "3.x",
42-
"patternfly": "~3.4.0"
42+
"patternfly": "~3.5.0"
4343
},
4444
"devDependencies": {
4545
"angular-mocks": "1.3.0 - 1.5.*"

dist/docs/css/angular-patternfly.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,3 +407,10 @@
407407
.toolbar-pf-actions.no-filter-results {
408408
margin-bottom: 10px;
409409
}
410+
411+
.panel-group .panel-default .panel-title > a:before {
412+
content: "\f105";
413+
}
414+
.panel-group .panel-open .panel-title > a:before {
415+
content: "\f107";
416+
}

dist/docs/css/examples.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ hr {
8989
margin-top: 5px;
9090
}
9191

92+
.pre-demo-text {
93+
margin-top: -20px;
94+
}
95+
9296
.label-title {
9397
font-size: 16px;
9498
font-weight: 600;

dist/docs/css/patternfly-additions.css

Lines changed: 15 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/docs/css/patternfly.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/docs/grunt-scripts/angular-animate.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.5.5
2+
* @license AngularJS v1.5.6
33
* (c) 2010-2016 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -132,7 +132,7 @@ function stripCommentsFromElement(element) {
132132
if (element instanceof jqLite) {
133133
switch (element.length) {
134134
case 0:
135-
return [];
135+
return element;
136136
break;
137137

138138
case 1:
@@ -3243,7 +3243,8 @@ var $$AnimationProvider = ['$animateProvider', function($animateProvider) {
32433243
}
32443244

32453245
function update(element) {
3246-
getRunner(element).setHost(newRunner);
3246+
var runner = getRunner(element);
3247+
if (runner) runner.setHost(newRunner);
32473248
}
32483249
}
32493250

0 commit comments

Comments
 (0)