wpaint.js: actually fix that

This commit is contained in:
czaks 2014-01-31 18:15:35 +01:00
parent 3a97ff1a7e
commit b564269692

View File

@ -87,7 +87,7 @@ oekaki.init = function() {
});
$("#wpaintdiv input").on("keydown", function(e) { if (e.keycode == 13) e.preventDefault(); });
$("#wpaintdiv input").on("keydown", function(e) { if (e.keycode == 13) { e.preventDefault(); e.stopPropagation(); } });
$('#wpaintctr .ui-resizable-se').css({'height':'12px', 'width':'12px'});
}
});