This commit is contained in:
joyqi 2013-10-20 13:50:39 +08:00
parent 3ea167cce3
commit e3e8c149a0
2 changed files with 6 additions and 6 deletions

View File

@ -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>

View File

@ -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;