Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kityminder-core
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
吴志俊
kityminder-core
Commits
842227b8
Commit
842227b8
authored
Apr 17, 2014
by
campaign
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
Conflicts: CHANGELOG.md
parents
9a1ad0c2
b0d4aa0a
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
4 deletions
+13
-4
CHANGELOG.md
CHANGELOG.md
+6
-2
Manual regression cases.xmind
spec/testdesign/Manual regression cases.xmind
+0
-0
saveto.js
src/adapter/saveto.js
+1
-1
dropfile.js
src/module/dropfile.js
+5
-0
png.js
src/protocal/png.js
+1
-1
No files found.
CHANGELOG.md
View file @
842227b8
...
...
@@ -15,13 +15,17 @@
6.
用户登出功能
7.
添加只读模式,配置项 readOnly,添加动态调用接口setEnabled,setDisabled
8.
优化当下拉菜单不可执行时,下拉菜单按钮会自动变灰
9.
新图标
### 问题修复
1.
导出 png 和 svg 图片时,文本中如果包含
` `
字符会报错的问题
2.
删除中心节点导致页面卡住
3.
去掉了“导出”菜单上的打勾
4.
光标定位在Firefox下,输入空格光标不移动问题
3.
文件在IE下无法导出(.txt,.svg,.km)
4.
拖入文件导入之后,草稿箱和社会化文件名不同步
5.
仅有根节点时,将其删除,再添加节点报错
6.
本地部署,127.0.0.1退出后不能登录
7.
去掉了“导出”菜单上的打勾
## v1.1.1
...
...
spec/testdesign/Manual regression cases.xmind
View file @
842227b8
No preview for this file type
src/adapter/saveto.js
View file @
842227b8
...
...
@@ -83,7 +83,7 @@ KM.registerToolbarUI( 'saveto', function ( name ) {
data
.
then
(
function
(
url
)
{
console
.
log
(
url
);
if
(
ie_ver
()
>
0
)
{
doSave
(
'application/base64'
,
url
.
replace
(
'image/octet-stream,'
,
''
),
filename
);
//
doSave( 'application/base64', url.replace( 'image/octet-stream,', '' ), filename );
}
else
{
doDownload
(
url
,
filename
);
}
...
...
src/module/dropfile.js
View file @
842227b8
...
...
@@ -21,6 +21,11 @@ KityMinder.registerModule( "DropFile", function () {
e
.
stopPropagation
();
var
minder
=
this
;
if
(
kity
.
Browser
.
ie
&&
Number
(
kity
.
Browser
.
version
)
<
10
){
alert
(
'文件导入对IE浏览器仅支持10以上版本'
);
return
;
}
var
files
=
e
.
dataTransfer
.
files
;
if
(
files
)
{
...
...
src/protocal/png.js
View file @
842227b8
...
...
@@ -6,7 +6,7 @@ KityMinder.registerProtocal( "png", function () {
}
return
{
fileDescription
:
'PNG 图片'
,
fileDescription
:
'PNG 图片
(暂不支持IE)
'
,
fileExtension
:
'.png'
,
encode
:
function
(
json
,
km
)
{
var
domContainer
=
km
.
getPaper
().
container
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment