Commit 96fdebdb authored by Ronny's avatar Ronny

IE9导入文件提示不支持

parent 898701c4
......@@ -17,6 +17,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 ) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment