|
|
|
@ -854,7 +854,24 @@ function setupInterface(data, file, urls) {
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
wnd_listener.simple_combo('up',
|
|
|
|
|
wnd_listener.register_combo(
|
|
|
|
|
{
|
|
|
|
|
keys: 'meta up',
|
|
|
|
|
on_keydown:
|
|
|
|
|
function() {
|
|
|
|
|
if (editingTd != null) return true;
|
|
|
|
|
|
|
|
|
|
stepsBackward(1);
|
|
|
|
|
},
|
|
|
|
|
is_solitary: true
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
wnd_listener.register_combo(
|
|
|
|
|
{
|
|
|
|
|
keys: 'up',
|
|
|
|
|
|
|
|
|
|
on_keydown:
|
|
|
|
|
function() {
|
|
|
|
|
if (editingTd != null) return true;
|
|
|
|
|
|
|
|
|
@ -868,9 +885,27 @@ function setupInterface(data, file, urls) {
|
|
|
|
|
else {
|
|
|
|
|
prev.children('.editable')[pos].focus();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
is_solitary : true
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
wnd_listener.simple_combo('down',
|
|
|
|
|
wnd_listener.register_combo(
|
|
|
|
|
{
|
|
|
|
|
keys: 'meta down',
|
|
|
|
|
|
|
|
|
|
on_keydown: function() {
|
|
|
|
|
if (editingTd != null) return true;
|
|
|
|
|
|
|
|
|
|
stepsForward(1);
|
|
|
|
|
},
|
|
|
|
|
is_solitary: true
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
wnd_listener.register_combo(
|
|
|
|
|
{
|
|
|
|
|
keys : 'down',
|
|
|
|
|
on_keydown:
|
|
|
|
|
function() {
|
|
|
|
|
if (editingTd != null) return true;
|
|
|
|
|
|
|
|
|
@ -884,7 +919,11 @@ function setupInterface(data, file, urls) {
|
|
|
|
|
else {
|
|
|
|
|
next.children('.editable')[pos].focus();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
is_solitary: true,
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wnd_listener.sequence_combo('l a',
|
|
|
|
|
function() {
|
|
|
|
|