mirror of
https://github.com/typecho/typecho.git
synced 2025-04-04 18:22:23 +02:00
fixed #11
This commit is contained in:
parent
3ea167cce3
commit
e3e8c149a0
@ -160,11 +160,6 @@ $(document).ready(function() {
|
||||
}
|
||||
});
|
||||
|
||||
$('#file-list li').each(function () {
|
||||
attachInsertEvent(this);
|
||||
attachDeleteEvent(this);
|
||||
});
|
||||
|
||||
function attachInsertEvent (el) {
|
||||
$('.insert', el).click(function () {
|
||||
var t = $(this), p = t.parents('li');
|
||||
@ -190,6 +185,11 @@ $(document).ready(function() {
|
||||
return false;
|
||||
});
|
||||
}
|
||||
|
||||
$('#file-list li').each(function () {
|
||||
attachInsertEvent(this);
|
||||
attachDeleteEvent(this);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
|
@ -249,7 +249,7 @@ $(document).ready(function () {
|
||||
editor.run();
|
||||
|
||||
var imageButton = $('#wmd-image-button'),
|
||||
linkButton = $('#wmd-image-button');
|
||||
linkButton = $('#wmd-link-button');
|
||||
|
||||
Typecho.insertFileToEditor = function (file, url, isImage) {
|
||||
var button = isImage ? imageButton : linkButton;
|
||||
|
Loading…
x
Reference in New Issue
Block a user