Skip to content
This repository was archived by the owner on Jan 12, 2018. It is now read-only.

Commit 1cfff12

Browse files
authored
Merge pull request #152 from skateman/convert-3.23.2
Converted from upstream version 3.23.2
2 parents 65d5450 + 8899746 commit 1cfff12

13 files changed

+15
-15
lines changed

assets/javascripts/patternfly-functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@
581581
if (parent) {
582582
// Calculate indentation depth
583583
i = parent.find('.treegrid-node > span.indent').length + 1;
584-
for (i; i > 0; i -= 1) {
584+
for (; i > 0; i -= 1) {
585585
node.children('.treegrid-node').prepend('<span class="indent"/>');
586586
}
587587
// Render expand/collapse icons

assets/javascripts/patternfly-settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
'use strict';
33

44
var patternfly = {
5-
version: "3.23.1",
5+
version: "3.23.2",
66
};
77

88
// Util: PatternFly Palette colors

assets/javascripts/patternfly-settings.min.js

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

assets/javascripts/patternfly.dataTables.pfPagination.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
var FIRST_PAGE_SELECTOR = ".pagination-pf-back .fa-angle-double-left"; // First page button
9797
var FORWARD_ACTIONS_SELECTOR = ".pagination-pf-forward"; // Forward navigation actions
9898
var LAST_PAGE_SELECTOR = ".pagination-pf-forward .fa-angle-double-right"; // Last page button
99-
var PAGE_SIZE_SELECTOR = ".pagination-pf-pagesize"; // Page size selection
99+
var PAGE_SIZE_SELECTOR = ".bootstrap-select .pagination-pf-pagesize"; // Page size selection
100100
var TOTAL_ITEMS_SELECTOR = ".pagination-pf-items-total"; // Total items
101101
var TOTAL_PAGES_SELECTOR = ".pagination-pf-pages"; // Total pages text
102102
var PREVIOUS_PAGE_SELECTOR = ".pagination-pf-back .fa-angle-left"; // Previous page button

assets/javascripts/patternfly.dataTables.pfPagination.min.js

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

assets/javascripts/patternfly.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
'use strict';
33

44
var patternfly = {
5-
version: "3.23.1",
5+
version: "3.23.2",
66
};
77

88
// Util: PatternFly Palette colors
@@ -1102,7 +1102,7 @@
11021102
if (parent) {
11031103
// Calculate indentation depth
11041104
i = parent.find('.treegrid-node > span.indent').length + 1;
1105-
for (i; i > 0; i -= 1) {
1105+
for (; i > 0; i -= 1) {
11061106
node.children('.treegrid-node').prepend('<span class="indent"/>');
11071107
}
11081108
// Render expand/collapse icons

assets/javascripts/patternfly.min.js

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

assets/stylesheets/patternfly/_wizard.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
font-size: $font-size-base;
179179
font-weight: 700;
180180
height: 25px;
181-
left: calc(50% - 13px);
181+
left: #{calc(50% - 13px)};
182182
line-height: 22px;
183183
position: absolute;
184184
top: 27px;

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "patternfly-sass",
3-
"version": "3.23.1",
3+
"version": "3.23.2",
44
"license": "Apache-2.0",
55
"homepage": "https://www.patternfly.org",
66
"authors": [

lib/patternfly-sass/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module Patternfly
2-
VERSION = '3.23.1'
3-
PATTERNFLY_SHA = '955981aac98855e7dc43d86b7b3cb832de46c2b1'
2+
VERSION = '3.23.2'
3+
PATTERNFLY_SHA = 'c0edb0c381f19250dc2907f241919f786da3aab6'
44
end

0 commit comments

Comments
 (0)