Browse Source

wpaint.js: actually actually fix that

pull/40/head
czaks 10 years ago
parent
commit
81ee819e5a
  1. 2
      js/wpaint.js

2
js/wpaint.js

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

Loading…
Cancel
Save