1
0
Fork 0
forked from 0x2620/oxjs

fix control_x handler in Ox.List

This commit is contained in:
rlx 2013-08-03 14:47:25 +00:00
commit 66ee836c13

View file

@ -191,7 +191,9 @@ Ox.List = function(options, self) {
addItem('shift'); addItem('shift');
}, },
key_control_v: pasteItems, key_control_v: pasteItems,
key_control_x: cutItems, key_control_x: function() {
cutItems();
},
key_control_shift_x: function() { key_control_shift_x: function() {
cutItems(true); cutItems(true);
}, },