-
-
Notifications
You must be signed in to change notification settings - Fork 866
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
7 changed files
with
25 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,15 +26,15 @@ The ES6 version of jsMind has been launched, and legacy version has been depreca | |
<link | ||
type="text/css" | ||
rel="stylesheet" | ||
href="//cdn.jsdelivr.net/npm/[email protected].0/style/jsmind.css" | ||
href="//cdn.jsdelivr.net/npm/[email protected].1/style/jsmind.css" | ||
/> | ||
<script | ||
type="text/javascript" | ||
src="//cdn.jsdelivr.net/npm/[email protected].0/es6/jsmind.js" | ||
src="//cdn.jsdelivr.net/npm/[email protected].1/es6/jsmind.js" | ||
></script> | ||
<!-- | ||
enable draggable node feature | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/[email protected].0/es6/jsmind.draggable-node.js"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/[email protected].1/es6/jsmind.draggable-node.js"></script> | ||
--> | ||
</head> | ||
<body> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,22 +12,22 @@ | |
At first, 2 files (jsmind.css and jsmind.js) are required. Here we link to the resources on the CDN. It is recommended to use the latest version. | ||
|
||
```html | ||
<link type="text/css" rel="stylesheet" href="https://unpkg.com/[email protected].0/style/jsmind.css" /> | ||
<link type="text/css" rel="stylesheet" href="https://unpkg.com/[email protected].1/style/jsmind.css" /> | ||
|
||
<script type="text/javascript" src="https://unpkg.com/[email protected].0/es6/jsmind.js"></script> | ||
<script type="text/javascript" src="https://unpkg.com/[email protected].1/es6/jsmind.js"></script> | ||
|
||
``` | ||
> CDN: other available CDNs are [jsDelivr](https://www.jsdelivr.com/package/npm/jsmind/), and [the mirror of jsDelivr in China](https://jsd.onmicrosoft.cn/npm/jsmind/). the resource urls would look like: | ||
> - https://unpkg.com/[email protected].0/es6/jsmind.js | ||
> - https://cdn.jsdelivr.net/npm/[email protected].0/es6/jsmind.js | ||
> - https://jsd.onmicrosoft.cn/npm/[email protected].0/es6/jsmind.js | ||
> - https://unpkg.com/[email protected].1/es6/jsmind.js | ||
> - https://cdn.jsdelivr.net/npm/[email protected].1/es6/jsmind.js | ||
> - https://jsd.onmicrosoft.cn/npm/[email protected].1/es6/jsmind.js | ||
> Version: the version number appear in the url of CDN. It's strongly recommended that you also specify the version number in your project to avoid the risks that caused by version upgrades. Access the [Release page](https://github.com/hizzgdev/jsmind/releases) to get the latest version number of jsMind. | ||
Add script jsmind.draggable-node.js for enabling draggable node feature. | ||
|
||
```html | ||
<script type="text/javascript" src="https://unpkg.com/[email protected].0/es6/jsmind.draggable-node.js"></script> | ||
<script type="text/javascript" src="https://unpkg.com/[email protected].1/es6/jsmind.draggable-node.js"></script> | ||
``` | ||
|
||
The second, a div element should be in your HTML as container | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,22 +13,22 @@ | |
|
||
|
||
```html | ||
<link type="text/css" rel="stylesheet" href="https://unpkg.com/[email protected].0/style/jsmind.css" /> | ||
<link type="text/css" rel="stylesheet" href="https://unpkg.com/[email protected].1/style/jsmind.css" /> | ||
|
||
<script type="text/javascript" src="https://unpkg.com/[email protected].0/es6/jsmind.js"></script> | ||
<script type="text/javascript" src="https://unpkg.com/[email protected].1/es6/jsmind.js"></script> | ||
``` | ||
|
||
> CDN:其它可用的 CDN 还有 [jsDelivr](https://www.jsdelivr.com/package/npm/jsmind/),以及 jsDelivr 的[国内镜像](https://jsd.onmicrosoft.cn/npm/jsmind/)。文件路径大概像这样: | ||
> - https://unpkg.com/[email protected].0/es6/jsmind.js | ||
> - https://cdn.jsdelivr.net/npm/[email protected].0/es6/jsmind.js | ||
> - https://jsd.onmicrosoft.cn/npm/[email protected].0/es6/jsmind.js | ||
> - https://unpkg.com/[email protected].1/es6/jsmind.js | ||
> - https://cdn.jsdelivr.net/npm/[email protected].1/es6/jsmind.js | ||
> - https://jsd.onmicrosoft.cn/npm/[email protected].1/es6/jsmind.js | ||
> 版本:上面的示例url中都有版本号,强烈建议你在项目里也指明版本号,以避免版本升级给你的项目带来风险。访问 [Release 页面](https://github.com/hizzgdev/jsmind/releases) 可以获取 jsmind 的最新版本号。 | ||
如果希望能够通过鼠标拖拽的方式移动节点,需要额外引用 jsmind.draggable-node.js 文件 | ||
|
||
```html | ||
<script type="text/javascript" src="https://unpkg.com/[email protected].0/es6/jsmind.draggable-node.js"></script> | ||
<script type="text/javascript" src="https://unpkg.com/[email protected].1/es6/jsmind.draggable-node.js"></script> | ||
``` | ||
|
||
其次,要为 jsMind 准备一个容器,jsMind 将在这个容器里显示思维导图。可自行定义容器的id、大小及样式。 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,16 +31,16 @@ | |
paths: { | ||
// note: replace `latest` with a specific version on production | ||
'jsmind': 'https://unpkg.com/jsmind@latest/es6/jsmind', | ||
'jsmind/draggable_node': | ||
'jsmind/draggable-node': | ||
'https://unpkg.com/jsmind@latest/es6/jsmind.draggable-node', | ||
}, | ||
}); | ||
require(['jsmind', 'jsmind/draggable_node'], function (jsMind, _) { | ||
require(['jsmind', 'jsmind/draggable-node'], function (jsMind, _) { | ||
let mind = { | ||
meta: { | ||
name: 'jsMind example', | ||
author: '[email protected]', | ||
version: '0.7.0', | ||
version: '0.7.1', | ||
}, | ||
format: 'node_tree', | ||
data: { | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
* https://github.com/hizzgdev/jsmind/ | ||
*/ | ||
|
||
export const __version__ = '0.7.0'; | ||
export const __version__ = '0.7.1'; | ||
export const __author__ = '[email protected]'; | ||
|
||
if (typeof String.prototype.startsWith != 'function') { | ||
|