0
|
1 /**
|
|
2 * Help plugin client script
|
|
3 * @version 1.4
|
|
4 *
|
|
5 * @licstart The following is the entire license notice for the
|
|
6 * JavaScript code in this file.
|
|
7 *
|
|
8 * Copyright (c) 2012-2014, The Roundcube Dev Team
|
|
9 *
|
|
10 * The JavaScript code in this page is free software: you can redistribute it
|
|
11 * and/or modify it under the terms of the GNU General Public License
|
|
12 * as published by the Free Software Foundation, either version 3 of
|
|
13 * the License, or (at your option) any later version.
|
|
14 *
|
|
15 * @licend The above is the entire license notice
|
|
16 * for the JavaScript code in this file.
|
|
17 */
|
|
18 window.rcmail&&rcmail.addEventListener("beforeswitch-task",function(a){if("help"==a){if("help"==rcmail.task)return!1;a=rcmail.url("help/index",{_rel:rcmail.task+(rcmail.env.action?"/"+rcmail.env.action:"")});rcmail.env.help_open_extwin?rcmail.open_window(a,1020,!1):rcmail.redirect(a,!1);return!1}});
|