Skip to content

Commit 26db493

Browse files
committed
remove font-awesome dependency
1 parent b846576 commit 26db493

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
# [React Version](https://github.com/dabeng/react-orgchart)
88

99
## Foreword
10-
- First of all, thanks a lot for [wesnolte](https://github.com/wesnolte)'s great work:blush: -- [jOrgChart](https://github.com/wesnolte/jOrgChart). The thought that using nested tables to build out the tree-like orgonization chart is amazing. This idea is more simple and direct than its counterparts based on svg
11-
- Unfortunately, it's long time not to see the update of jOrgChart. on the other hand, I got some interesting ideas to add, so I choose to create a new repo.
12-
- Font Awesome provides us with administration icon, second level menu icon and loading spinner.
10+
First of all, thanks a lot for [wesnolte](https://github.com/wesnolte)'s great work:blush: -- [jOrgChart](https://github.com/wesnolte/jOrgChart). The thought that using nested tables to build out the tree-like orgonization chart is amazing. This idea is more simple and direct than its counterparts based on svg
11+
Unfortunately, it's long time not to see the update of jOrgChart. on the other hand, I got some interesting ideas to add, so I choose to create a new repo.
1312

1413
## Features
1514
- Supports both local data and remote data (JSON).
@@ -18,9 +17,10 @@
1817
- Allows user to change orgchart structure by drag/drop nodes.
1918
- Allows user to edit orgchart dynamically and save the final hierarchy as a JSON object.
2019
- Supports exporting chart as a picture or pdf document.
21-
- Supports pan and zoom
22-
- Users can adopt multiple solutions to build up a huge organization chart(please refer to multiple-layers or hybrid layout sections)
23-
- touch-enabled plugin for mobile device
20+
- Supports pan and zoom.
21+
- Allows user to customize the internal structure for every node.
22+
- Users can adopt multiple solutions to build up a huge organization chart(please refer to multiple-layers or hybrid layout sections).
23+
- touch-enabled plugin for mobile device.
2424

2525
## CDN
2626
Users could find the related CDN support for OrgChart's CSS and JavaScript.
@@ -214,7 +214,7 @@ var oc = $('#chartContainerId').orgchart(options);
214214
<td>nodeTitle</td><td>string</td><td>no</td><td>"name"</td><td>It sets one property of datasource as text content of title section of orgchart node. In fact, users can create a simple orghcart with only nodeTitle option.</td>
215215
</tr>
216216
<tr>
217-
<td>parentNodeSymbol</td><td>string</td><td>no</td><td>"fa-users"</td><td>Using font awesome icon to imply that the node has child nodes.</td>
217+
<td>parentNodeSymbol</td><td>string</td><td>no</td><td>"oci-leader"</td><td>Using your own icon to imply that the node has child nodes.</td>
218218
</tr>
219219
<tr>
220220
<td>nodeContent</td><td>string</td><td>no</td><td></td><td>It sets one property of datasource as text content of content section of orgchart node.</td>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "orgchart",
3-
"version": "2.1.9",
3+
"version": "2.1.10",
44
"description": "Simple and direct organization chart(tree-like hierarchy) plugin based on pure DOM and jQuery.",
55
"main": "./dist/js/jquery.orgchart.min.js",
66
"style": [

0 commit comments

Comments
 (0)