Roundcube/Plugin/swipe: Unterschied zwischen den Versionen
Die Seite wurde neu angelegt: „== swipe == * Installed via <code>composer</code> johndoh/swipe * Plugin name: ''swipe'' <blockquote>This plugin adds left/right/down swipe actions to entries in the the message list on touch devices (tables/phones).</blockquote>Unfortunately this plugins does not have a config file of its own, so we have to add the configuration to the main RC config file. This is how I configured it for myself. Look at the README file to find the list of all actions…“ |
K Textersetzung - „</blockquote>“ durch „“ |
||
Zeile 3: | Zeile 3: | ||
* Plugin name: ''swipe'' | * Plugin name: ''swipe'' | ||
<blockquote>This plugin adds left/right/down swipe actions to entries in the the message list on touch devices (tables/phones). | <blockquote>This plugin adds left/right/down swipe actions to entries in the the message list on touch devices (tables/phones).Unfortunately this plugins does not have a config file of its own, so we have to add the configuration to the main RC config file. | ||
This is how I configured it for myself. Look at the README file to find the list of all actions available. | This is how I configured it for myself. Look at the README file to find the list of all actions available. |
Version vom 27. August 2023, 13:42 Uhr
swipe
- Installed via
composer
johndoh/swipe - Plugin name: swipe
This plugin adds left/right/down swipe actions to entries in the the message list on touch devices (tables/phones).Unfortunately this plugins does not have a config file of its own, so we have to add the configuration to the main RC config file.
This is how I configured it for myself. Look at the README file to find the list of all actions available. $config['swipe_actions'] = [ 'messagelist' => [ 'left' => 'delete', 'right' => 'reply-all', 'down' => 'checkmail' ], 'contactlist' => [ 'left' => 'compose', 'right' => 'compose', 'down' => 'vcard_attachments' ] ];