fixes #78: While editing a translation note, cannot see contents of other notes

This commit is contained in:
albert
2011-09-15 19:06:41 -04:00
parent ba4052e831
commit 4c33d0b8db
2 changed files with 2 additions and 3 deletions

View File

@@ -258,8 +258,7 @@ Danbooru.Note = {
$dialog.append($textarea);
$dialog.data("id", $note_body.data("id"));
$dialog.dialog({
modal: true,
width: 300,
width: 350,
dialogClass: "note-edit-dialog",
title: "Edit note",
buttons: {
@@ -274,7 +273,7 @@ Danbooru.Note = {
$(".note-box").resizable("enable");
$(".note-box").draggable("enable");
});
Danbooru.Note.editing = true;
// Danbooru.Note.editing = true;
},
parameterize_note: function($note_box, $note_body) {

View File