2017-03-20 06:05:54 +01:00
|
|
|
// Important note on these tests:
|
|
|
|
//
|
|
|
|
// The way the Zulip hotkey tests work is as follows. First, we set
|
|
|
|
// up various contexts by monkey-patching the various hotkeys exports
|
2017-05-27 15:40:54 +02:00
|
|
|
// functions (like overlays.settings_open). Within that context, to
|
2017-03-20 06:05:54 +01:00
|
|
|
// test whether a given key (e.g. `x`) results in a specific function
|
|
|
|
// (e.g. `ui.foo()`), we fail to import any modules other than
|
|
|
|
// hotkey.js so that accessing them will result in a ReferenceError.
|
|
|
|
//
|
|
|
|
// Then we create a stub `ui.foo`, and call the hotkey function. If
|
|
|
|
// it calls any external module other than `ui.foo`, it'll crash.
|
|
|
|
// Future work includes making sure it actually does call `ui.foo()`.
|
|
|
|
|
2017-03-10 22:24:54 +01:00
|
|
|
set_global('activity', {
|
|
|
|
});
|
|
|
|
|
2017-03-18 21:26:24 +01:00
|
|
|
set_global('drafts', {
|
|
|
|
});
|
|
|
|
|
2017-09-16 17:30:07 +02:00
|
|
|
set_global('page_params', {
|
|
|
|
});
|
|
|
|
|
2017-05-27 15:40:54 +02:00
|
|
|
set_global('overlays', {
|
2017-05-10 00:37:08 +02:00
|
|
|
});
|
|
|
|
|
2017-03-10 22:24:54 +01:00
|
|
|
set_global('$', function () {
|
|
|
|
return {
|
2017-03-19 05:19:36 +01:00
|
|
|
// Hack: Used for reactions hotkeys; may want to restructure.
|
|
|
|
find: function () {return ['target'];},
|
2017-03-10 22:24:54 +01:00
|
|
|
keydown: function () {},
|
|
|
|
keypress: function () {},
|
|
|
|
};
|
|
|
|
});
|
2017-03-14 18:29:38 +01:00
|
|
|
|
2017-03-10 22:24:54 +01:00
|
|
|
set_global('document', {
|
|
|
|
});
|
2017-03-14 18:29:38 +01:00
|
|
|
|
2017-03-10 22:24:54 +01:00
|
|
|
var hotkey = require('js/hotkey.js');
|
|
|
|
|
2017-04-04 18:14:27 +02:00
|
|
|
set_global('list_util', {
|
|
|
|
});
|
|
|
|
|
2017-03-10 22:24:54 +01:00
|
|
|
set_global('current_msg_list', {
|
2017-03-19 05:19:36 +01:00
|
|
|
selected_id: function () {
|
|
|
|
return 42;
|
|
|
|
},
|
|
|
|
selected_message: function () {
|
|
|
|
return {
|
|
|
|
sent_by_me: true,
|
|
|
|
flags: ["read", "starred"],
|
|
|
|
};
|
|
|
|
},
|
|
|
|
selected_row: function () {},
|
2017-03-10 22:24:54 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
function return_true() { return true; }
|
|
|
|
function return_false() { return false; }
|
|
|
|
|
|
|
|
function stubbing(func_name_to_stub, test_function) {
|
|
|
|
global.with_overrides(function (override) {
|
|
|
|
global.with_stub(function (stub) {
|
|
|
|
override(func_name_to_stub, stub.f);
|
|
|
|
test_function(stub);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-03-13 21:41:28 +01:00
|
|
|
(function test_mappings() {
|
|
|
|
function map_press(which, shiftKey) {
|
|
|
|
return hotkey.get_keypress_hotkey({
|
|
|
|
which: which,
|
|
|
|
shiftKey: shiftKey,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-03-19 19:26:13 +01:00
|
|
|
function map_down(which, shiftKey, ctrlKey) {
|
2017-03-13 21:41:28 +01:00
|
|
|
return hotkey.get_keydown_hotkey({
|
|
|
|
which: which,
|
|
|
|
shiftKey: shiftKey,
|
2017-03-19 19:26:13 +01:00
|
|
|
ctrlKey: ctrlKey,
|
2017-03-13 21:41:28 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// The next assertion protects against an iOS bug where we
|
|
|
|
// treat "!" as a hotkey, because iOS sends the wrong code.
|
|
|
|
assert.equal(map_press(33), undefined);
|
|
|
|
|
|
|
|
// Test page-up does work.
|
|
|
|
assert.equal(map_down(33).name, 'page_up');
|
|
|
|
|
|
|
|
// Test other mappings.
|
|
|
|
assert.equal(map_down(9).name, 'tab');
|
|
|
|
assert.equal(map_down(9, true).name, 'shift_tab');
|
|
|
|
assert.equal(map_down(27).name, 'escape');
|
|
|
|
assert.equal(map_down(37).name, 'left_arrow');
|
|
|
|
assert.equal(map_down(13).name, 'enter');
|
|
|
|
assert.equal(map_down(13, true).name, 'enter');
|
|
|
|
|
|
|
|
assert.equal(map_press(47).name, 'search'); // slash
|
|
|
|
assert.equal(map_press(106).name, 'vim_down'); // j
|
|
|
|
|
2017-03-19 19:26:13 +01:00
|
|
|
assert.equal(map_down(219, false, true).name, 'esc_ctrl');
|
|
|
|
|
2017-03-13 21:41:28 +01:00
|
|
|
// More negative tests.
|
|
|
|
assert.equal(map_down(47), undefined);
|
|
|
|
assert.equal(map_press(27), undefined);
|
|
|
|
assert.equal(map_down(27, true), undefined);
|
2017-03-19 19:26:13 +01:00
|
|
|
assert.equal(map_down(67, false, true), undefined); // ctrl + c
|
|
|
|
assert.equal(map_down(86, false, true), undefined); // ctrl + v
|
|
|
|
assert.equal(map_down(90, false, true), undefined); // ctrl + z
|
|
|
|
assert.equal(map_down(84, false, true), undefined); // ctrl + t
|
|
|
|
assert.equal(map_down(82, false, true), undefined); // ctrl + r
|
|
|
|
assert.equal(map_down(79, false, true), undefined); // ctrl + o
|
|
|
|
assert.equal(map_down(80, false, true), undefined); // ctrl + p
|
|
|
|
assert.equal(map_down(65, false, true), undefined); // ctrl + a
|
|
|
|
assert.equal(map_down(83, false, true), undefined); // ctrl + s
|
|
|
|
assert.equal(map_down(70, false, true), undefined); // ctrl + f
|
|
|
|
assert.equal(map_down(72, false, true), undefined); // ctrl + h
|
|
|
|
assert.equal(map_down(88, false, true), undefined); // ctrl + x
|
|
|
|
assert.equal(map_down(78, false, true), undefined); // ctrl + n
|
|
|
|
assert.equal(map_down(77, false, true), undefined); // ctrl + m
|
2017-03-13 21:41:28 +01:00
|
|
|
}());
|
|
|
|
|
2017-03-10 22:24:54 +01:00
|
|
|
(function test_basic_chars() {
|
|
|
|
function process(s) {
|
|
|
|
var e = {
|
|
|
|
which: s.charCodeAt(0),
|
|
|
|
};
|
2017-03-18 22:05:07 +01:00
|
|
|
try {
|
|
|
|
return hotkey.process_keypress(e);
|
|
|
|
} catch (err) {
|
|
|
|
// An exception will be thrown here if a different
|
|
|
|
// function is called than the one declared. Try to
|
|
|
|
// provide a useful error message.
|
2017-03-18 22:05:07 +01:00
|
|
|
// add a newline to seperate from other console output.
|
|
|
|
console.log('\nERROR: Mapping for character "' + e.which + '" does not match tests.');
|
2017-03-18 22:05:07 +01:00
|
|
|
}
|
2017-03-10 22:24:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function assert_mapping(c, func_name, shiftKey) {
|
|
|
|
stubbing(func_name, function () {
|
|
|
|
assert(process(c, shiftKey));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function assert_unmapped(s) {
|
|
|
|
_.each(s, function (c) {
|
|
|
|
assert.equal(process(c), false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unmapped keys should immediately return false, without
|
|
|
|
// calling any functions outside of hotkey.js.
|
2017-05-23 20:01:24 +02:00
|
|
|
assert_unmapped('abefhlmoptxyz');
|
2017-05-24 20:15:51 +02:00
|
|
|
assert_unmapped('BEFHILNOQTUWXYZ');
|
2017-03-10 22:24:54 +01:00
|
|
|
|
|
|
|
// We have to skip some checks due to the way the code is
|
|
|
|
// currently organized for mapped keys.
|
|
|
|
hotkey.is_editing_stream_name = return_false;
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.settings_open = return_false;
|
2017-03-10 22:24:54 +01:00
|
|
|
|
|
|
|
set_global('popovers', {
|
|
|
|
actions_popped: return_false,
|
2017-04-27 07:27:25 +02:00
|
|
|
});
|
|
|
|
set_global('emoji_picker', {
|
2017-04-19 07:37:03 +02:00
|
|
|
reactions_popped: return_false,
|
2017-03-10 22:24:54 +01:00
|
|
|
});
|
2017-08-02 04:46:56 +02:00
|
|
|
set_global('hotspots', {
|
|
|
|
is_open: return_false,
|
|
|
|
});
|
2017-04-27 07:27:25 +02:00
|
|
|
|
2017-03-10 22:24:54 +01:00
|
|
|
// All letters should return false if we are composing text.
|
|
|
|
hotkey.processing_text = return_true;
|
|
|
|
|
|
|
|
function test_normal_typing() {
|
|
|
|
assert_unmapped('abcdefghijklmnopqrstuvwxyz');
|
|
|
|
assert_unmapped(' ');
|
|
|
|
assert_unmapped('[]\\.,;');
|
|
|
|
assert_unmapped('ABCDEFGHIJKLMNOPQRSTUVWXYZ');
|
2017-09-07 03:01:17 +02:00
|
|
|
assert_unmapped('~!@#$%^*()_+{}:"<>');
|
2017-03-10 22:24:54 +01:00
|
|
|
}
|
|
|
|
|
2017-05-10 00:37:08 +02:00
|
|
|
_.each([return_true, return_false], function (settings_open) {
|
2017-05-06 02:40:32 +02:00
|
|
|
_.each([return_true, return_false], function (is_active) {
|
2017-05-09 16:45:02 +02:00
|
|
|
_.each([return_true, return_false], function (info_overlay_open) {
|
2017-05-27 15:40:54 +02:00
|
|
|
set_global('overlays', {
|
2017-05-09 16:45:02 +02:00
|
|
|
is_active: is_active,
|
2017-05-10 00:37:08 +02:00
|
|
|
settings_open: settings_open,
|
2017-05-09 16:45:02 +02:00
|
|
|
info_overlay_open: info_overlay_open});
|
2017-03-10 22:24:54 +01:00
|
|
|
|
2017-04-12 20:58:31 +02:00
|
|
|
test_normal_typing();
|
|
|
|
});
|
2017-03-10 22:24:54 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Ok, now test keys that work when we're viewing messages.
|
|
|
|
hotkey.processing_text = return_false;
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.settings_open = return_false;
|
2017-03-23 03:06:38 +01:00
|
|
|
|
2017-09-16 17:30:07 +02:00
|
|
|
page_params.can_create_streams = true;
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.streams_open = return_true;
|
|
|
|
overlays.is_active = return_true;
|
2017-05-24 20:15:51 +02:00
|
|
|
assert_mapping('S', 'subs.keyboard_sub');
|
2017-03-23 06:41:31 +01:00
|
|
|
assert_mapping('V', 'subs.view_stream');
|
2017-03-23 07:54:10 +01:00
|
|
|
assert_mapping('n', 'subs.new_stream_clicked');
|
2017-09-16 17:30:07 +02:00
|
|
|
page_params.can_create_streams = false;
|
|
|
|
assert_unmapped('n');
|
|
|
|
overlays.is_active = return_false;
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.streams_open = return_false;
|
2017-03-10 22:24:54 +01:00
|
|
|
|
2017-06-15 16:11:17 +02:00
|
|
|
assert_mapping('?', 'ui.maybe_show_keyboard_shortcuts');
|
2017-03-10 22:24:54 +01:00
|
|
|
assert_mapping('/', 'search.initiate_search');
|
|
|
|
assert_mapping('q', 'activity.initiate_search');
|
|
|
|
assert_mapping('w', 'stream_list.initiate_search');
|
|
|
|
|
2017-08-16 19:06:07 +02:00
|
|
|
assert_mapping('A', 'narrow.stream_cycle_backward');
|
|
|
|
assert_mapping('D', 'narrow.stream_cycle_forward');
|
2017-03-10 22:24:54 +01:00
|
|
|
|
2017-03-18 17:41:47 +01:00
|
|
|
assert_mapping('c', 'compose_actions.start');
|
|
|
|
assert_mapping('C', 'compose_actions.start');
|
2017-03-19 19:41:02 +01:00
|
|
|
assert_mapping('P', 'narrow.by');
|
2017-03-18 20:30:20 +01:00
|
|
|
assert_mapping('g', 'gear_menu.open');
|
2017-03-18 21:26:24 +01:00
|
|
|
assert_mapping('d', 'drafts.toggle');
|
2017-03-10 22:24:54 +01:00
|
|
|
|
|
|
|
// Next, test keys that only work on a selected message.
|
2017-04-21 09:33:05 +02:00
|
|
|
var message_view_only_keys = '@*+RjJkKsSuvi:GM';
|
2017-03-23 19:38:08 +01:00
|
|
|
|
|
|
|
// Check that they do nothing without a selected message
|
2017-03-10 22:24:54 +01:00
|
|
|
global.current_msg_list.empty = return_true;
|
2017-03-23 19:38:08 +01:00
|
|
|
assert_unmapped(message_view_only_keys);
|
2017-03-10 22:24:54 +01:00
|
|
|
|
|
|
|
global.current_msg_list.empty = return_false;
|
|
|
|
|
2017-03-23 19:38:08 +01:00
|
|
|
// Check that they do nothing while in the settings overlay
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.settings_open = return_true;
|
2017-06-16 06:46:46 +02:00
|
|
|
assert_unmapped('@*+-rRjJkKsSuvi:GM');
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.settings_open = return_false;
|
2017-03-23 19:38:08 +01:00
|
|
|
|
|
|
|
// TODO: Similar check for being in the subs page
|
|
|
|
|
2017-04-14 19:27:12 +02:00
|
|
|
assert_mapping('@', 'compose_actions.reply_with_mention');
|
2017-03-19 00:30:32 +01:00
|
|
|
assert_mapping('*', 'message_flags.toggle_starred');
|
2017-05-29 23:37:32 +02:00
|
|
|
assert_mapping('+', 'reactions.toggle_emoji_reaction');
|
2017-06-16 06:46:46 +02:00
|
|
|
assert_mapping('-', 'condense.toggle_collapse');
|
2017-04-14 19:27:12 +02:00
|
|
|
assert_mapping('r', 'compose_actions.respond_to_message');
|
|
|
|
assert_mapping('R', 'compose_actions.respond_to_message', true);
|
2017-03-10 22:24:54 +01:00
|
|
|
assert_mapping('j', 'navigate.down');
|
|
|
|
assert_mapping('J', 'navigate.page_down');
|
|
|
|
assert_mapping('k', 'navigate.up');
|
|
|
|
assert_mapping('K', 'navigate.page_up');
|
|
|
|
assert_mapping('s', 'narrow.by_recipient');
|
|
|
|
assert_mapping('S', 'narrow.by_subject');
|
2017-05-23 20:01:24 +02:00
|
|
|
assert_mapping('u', 'popovers.show_sender_info');
|
2017-03-18 21:01:16 +01:00
|
|
|
assert_mapping('v', 'lightbox.show_from_selected_message');
|
2017-03-10 22:24:54 +01:00
|
|
|
assert_mapping('i', 'popovers.open_message_menu');
|
2017-09-18 22:06:39 +02:00
|
|
|
assert_mapping(':', 'reactions.open_reactions_popover', true);
|
2017-03-23 08:11:00 +01:00
|
|
|
assert_mapping('G', 'navigate.to_end');
|
2017-03-23 05:46:19 +01:00
|
|
|
assert_mapping('M', 'muting_ui.toggle_mute');
|
2017-03-23 13:23:49 +01:00
|
|
|
|
|
|
|
// Test keys that work when a message is selected and
|
|
|
|
// also when the message list is empty.
|
|
|
|
assert_mapping('n', 'narrow.narrow_to_next_topic');
|
|
|
|
|
|
|
|
global.current_msg_list.empty = return_true;
|
|
|
|
assert_mapping('n', 'narrow.narrow_to_next_topic');
|
|
|
|
|
|
|
|
global.current_msg_list.empty = return_false;
|
|
|
|
|
2017-03-10 22:24:54 +01:00
|
|
|
}());
|
2017-03-14 18:29:38 +01:00
|
|
|
|
|
|
|
(function test_motion_keys() {
|
|
|
|
var codes = {
|
|
|
|
down_arrow: 40,
|
|
|
|
end: 35,
|
|
|
|
home: 36,
|
|
|
|
left_arrow: 37,
|
2017-03-19 01:51:20 +01:00
|
|
|
right_arrow: 39,
|
2017-03-14 18:29:38 +01:00
|
|
|
page_up: 33,
|
|
|
|
page_down: 34,
|
|
|
|
spacebar: 32,
|
|
|
|
up_arrow: 38,
|
2017-03-19 03:08:09 +01:00
|
|
|
'+': 187,
|
2017-03-14 18:29:38 +01:00
|
|
|
};
|
|
|
|
|
2017-03-19 03:08:09 +01:00
|
|
|
function process(name, shiftKey, ctrlKey) {
|
2017-03-14 18:29:38 +01:00
|
|
|
var e = {
|
|
|
|
which: codes[name],
|
2017-03-19 03:08:09 +01:00
|
|
|
shiftKey: shiftKey,
|
2017-03-19 19:26:13 +01:00
|
|
|
ctrlKey: ctrlKey,
|
2017-03-14 18:29:38 +01:00
|
|
|
};
|
2017-03-18 22:05:07 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
return hotkey.process_keydown(e);
|
|
|
|
} catch (err) {
|
|
|
|
// An exception will be thrown here if a different
|
|
|
|
// function is called than the one declared. Try to
|
|
|
|
// provide a useful error message.
|
2017-03-18 22:05:07 +01:00
|
|
|
// add a newline to seperate from other console output.
|
|
|
|
console.log('\nERROR: Mapping for character "' + e.which + '" does not match tests.');
|
2017-03-18 22:05:07 +01:00
|
|
|
}
|
2017-03-14 18:29:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function assert_unmapped(name) {
|
|
|
|
assert.equal(process(name), false);
|
|
|
|
}
|
|
|
|
|
2017-03-19 03:08:09 +01:00
|
|
|
function assert_mapping(key_name, func_name, shiftKey, ctrlKey) {
|
2017-03-14 18:29:38 +01:00
|
|
|
stubbing(func_name, function () {
|
2017-03-19 03:08:09 +01:00
|
|
|
assert(process(key_name, shiftKey, ctrlKey));
|
2017-03-14 18:29:38 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-04-04 18:14:27 +02:00
|
|
|
list_util.inside_list = return_false;
|
2017-03-14 18:29:38 +01:00
|
|
|
global.current_msg_list.empty = return_true;
|
2017-04-04 20:48:08 +02:00
|
|
|
global.drafts.drafts_overlay_open = return_false;
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.settings_open = return_false;
|
|
|
|
overlays.streams_open = return_false;
|
|
|
|
overlays.lightbox_open = return_false;
|
2017-03-14 18:29:38 +01:00
|
|
|
|
|
|
|
assert_unmapped('down_arrow');
|
|
|
|
assert_unmapped('end');
|
|
|
|
assert_unmapped('home');
|
|
|
|
assert_unmapped('page_up');
|
|
|
|
assert_unmapped('page_down');
|
|
|
|
assert_unmapped('spacebar');
|
|
|
|
assert_unmapped('up_arrow');
|
|
|
|
|
2017-04-04 18:14:27 +02:00
|
|
|
global.list_util.inside_list = return_true;
|
|
|
|
assert_mapping('up_arrow', 'list_util.go_up');
|
|
|
|
assert_mapping('down_arrow', 'list_util.go_down');
|
|
|
|
list_util.inside_list = return_false;
|
|
|
|
|
2017-03-14 18:29:38 +01:00
|
|
|
global.current_msg_list.empty = return_false;
|
|
|
|
assert_mapping('down_arrow', 'navigate.down');
|
|
|
|
assert_mapping('end', 'navigate.to_end');
|
|
|
|
assert_mapping('home', 'navigate.to_home');
|
|
|
|
assert_mapping('left_arrow', 'message_edit.edit_last_sent_message');
|
|
|
|
assert_mapping('page_up', 'navigate.page_up');
|
|
|
|
assert_mapping('page_down', 'navigate.page_down');
|
|
|
|
assert_mapping('spacebar', 'navigate.page_down');
|
|
|
|
assert_mapping('up_arrow', 'navigate.up');
|
|
|
|
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.info_overlay_open = return_true;
|
2017-04-12 20:58:31 +02:00
|
|
|
assert_unmapped('down_arrow');
|
|
|
|
assert_unmapped('up_arrow');
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.info_overlay_open = return_false;
|
2017-04-12 20:58:31 +02:00
|
|
|
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.streams_open = return_true;
|
2017-03-22 22:18:34 +01:00
|
|
|
assert_mapping('up_arrow', 'subs.switch_rows');
|
|
|
|
assert_mapping('down_arrow', 'subs.switch_rows');
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.streams_open = return_false;
|
2017-03-23 06:02:01 +01:00
|
|
|
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.lightbox_open = return_true;
|
2017-03-23 06:02:01 +01:00
|
|
|
assert_mapping('left_arrow', 'lightbox.prev');
|
|
|
|
assert_mapping('right_arrow', 'lightbox.next');
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.lightbox_open = return_false;
|
2017-03-22 02:49:52 +01:00
|
|
|
|
2017-04-04 19:59:04 +02:00
|
|
|
hotkey.is_editing_stream_name = return_true;
|
|
|
|
assert_unmapped('down_arrow');
|
|
|
|
assert_unmapped('up_arrow');
|
2017-04-05 20:59:48 +02:00
|
|
|
hotkey.is_editing_stream_name = return_false;
|
2017-04-04 19:59:04 +02:00
|
|
|
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.settings_open = return_true;
|
2017-03-14 18:29:38 +01:00
|
|
|
assert_unmapped('end');
|
|
|
|
assert_unmapped('home');
|
|
|
|
assert_unmapped('left_arrow');
|
|
|
|
assert_unmapped('page_up');
|
|
|
|
assert_unmapped('page_down');
|
|
|
|
assert_unmapped('spacebar');
|
|
|
|
|
2017-04-04 19:59:04 +02:00
|
|
|
assert_mapping('up_arrow', 'settings.handle_up_arrow');
|
|
|
|
assert_mapping('down_arrow', 'settings.handle_down_arrow');
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.settings_open = return_false;
|
2017-04-04 20:48:08 +02:00
|
|
|
|
|
|
|
global.drafts.drafts_overlay_open = return_true;
|
|
|
|
assert_mapping('up_arrow', 'drafts.drafts_handle_events');
|
|
|
|
assert_mapping('down_arrow', 'drafts.drafts_handle_events');
|
2017-04-05 20:59:48 +02:00
|
|
|
global.drafts.drafts_overlay_open = return_false;
|
2017-03-14 18:29:38 +01:00
|
|
|
}());
|