Skip to content

Commit

Permalink
Bump version to v2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
skateman committed Jul 13, 2017
1 parent 5512653 commit f5e4b92
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "patternfly-bootstrap-treeview",
"description": "Tree View for Twitter Bootstrap",
"version": "2.1.4",
"version": "2.1.5",
"homepage": "https://github.com/patternfly/patternfly-bootstrap-treeview",
"main": "dist/bootstrap-treeview.js",
"keywords": [
Expand Down
5 changes: 5 additions & 0 deletions dist/bootstrap-treeview.js
Original file line number Diff line number Diff line change
Expand Up @@ -1146,6 +1146,11 @@
}
style += '.node-' + this._elementId + '[data-nodeId="' + node.nodeId + '"]{' + innerStyle + '}';
}

if (node.iconColor) {
var innerStyle = 'color:' + node.iconColor + ';';
style += '.node-' + this._elementId + '[data-nodeId="' + node.nodeId + '"] .node-icon{' + innerStyle + '}';
}
}, this));

return this._css + style;
Expand Down
2 changes: 1 addition & 1 deletion dist/bootstrap-treeview.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "patternfly-bootstrap-treeview",
"description": "Tree View for Twitter Bootstrap",
"version": "2.1.4",
"version": "2.1.5",
"homepage": "https://github.com/patternfly/patternfly-bootstrap-treeview",
"author": {
"name": "Red Hat"
Expand Down
5 changes: 5 additions & 0 deletions public/js/bootstrap-treeview.js
Original file line number Diff line number Diff line change
Expand Up @@ -1146,6 +1146,11 @@
}
style += '.node-' + this._elementId + '[data-nodeId="' + node.nodeId + '"]{' + innerStyle + '}';
}

if (node.iconColor) {
var innerStyle = 'color:' + node.iconColor + ';';
style += '.node-' + this._elementId + '[data-nodeId="' + node.nodeId + '"] .node-icon{' + innerStyle + '}';
}
}, this));

return this._css + style;
Expand Down
5 changes: 5 additions & 0 deletions tests/lib/bootstrap-treeview.js
Original file line number Diff line number Diff line change
Expand Up @@ -1146,6 +1146,11 @@
}
style += '.node-' + this._elementId + '[data-nodeId="' + node.nodeId + '"]{' + innerStyle + '}';
}

if (node.iconColor) {
var innerStyle = 'color:' + node.iconColor + ';';
style += '.node-' + this._elementId + '[data-nodeId="' + node.nodeId + '"] .node-icon{' + innerStyle + '}';
}
}, this));

return this._css + style;
Expand Down

0 comments on commit f5e4b92

Please sign in to comment.