forked from kindsoft/kindeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7baad09
commit be814b4
Showing
8 changed files
with
27 additions
and
13 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
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* @author Roddy <[email protected]> | ||
* @website http://www.kindsoft.net/ | ||
* @licence http://www.kindsoft.net/license.php | ||
* @version 4.1.6 (2013-03-27) | ||
* @version 4.1.6 (2013-04-05) | ||
*******************************************************************************/ | ||
(function (window, undefined) { | ||
if (window.KindEditor) { | ||
|
@@ -17,7 +17,7 @@ if (!window.console) { | |
if (!console.log) { | ||
console.log = function () {}; | ||
} | ||
var _VERSION = '4.1.6 (2013-03-27)', | ||
var _VERSION = '4.1.6 (2013-04-05)', | ||
_ua = navigator.userAgent.toLowerCase(), | ||
_IE = _ua.indexOf('msie') > -1 && _ua.indexOf('opera') == -1, | ||
_GECKO = _ua.indexOf('gecko') > -1 && _ua.indexOf('khtml') == -1, | ||
|
@@ -6819,6 +6819,8 @@ KindEditor.plugin('flash', function(K) { | |
}, | ||
'delete' : function() { | ||
self.plugin.getSelectedFlash().remove(); | ||
// [IE] 删除图片后立即点击图片按钮出错 | ||
self.addBookmark(); | ||
} | ||
}; | ||
self.clickToolbar(name, self.plugin.flash.edit); | ||
|
@@ -7135,6 +7137,8 @@ KindEditor.plugin('image', function(K) { | |
target = target.parent(); | ||
} | ||
target.remove(); | ||
// [IE] 删除图片后立即点击图片按钮出错 | ||
self.addBookmark(); | ||
} | ||
}; | ||
self.clickToolbar(name, self.plugin.image.edit); | ||
|
@@ -7682,6 +7686,8 @@ KindEditor.plugin('media', function(K) { | |
}, | ||
'delete' : function() { | ||
self.plugin.getSelectedMedia().remove(); | ||
// [IE] 删除图片后立即点击图片按钮出错 | ||
self.addBookmark(); | ||
} | ||
}; | ||
self.clickToolbar(name, self.plugin.media.edit); | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* @author Roddy <[email protected]> | ||
* @website http://www.kindsoft.net/ | ||
* @licence http://www.kindsoft.net/license.php | ||
* @version 4.1.6 (2013-03-27) | ||
* @version 4.1.6 (2013-04-05) | ||
*******************************************************************************/ | ||
(function (window, undefined) { | ||
if (window.KindEditor) { | ||
|
@@ -17,7 +17,7 @@ if (!window.console) { | |
if (!console.log) { | ||
console.log = function () {}; | ||
} | ||
var _VERSION = '4.1.6 (2013-03-27)', | ||
var _VERSION = '4.1.6 (2013-04-05)', | ||
_ua = navigator.userAgent.toLowerCase(), | ||
_IE = _ua.indexOf('msie') > -1 && _ua.indexOf('opera') == -1, | ||
_GECKO = _ua.indexOf('gecko') > -1 && _ua.indexOf('khtml') == -1, | ||
|
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
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