Roundcube/Plugin/swipe: Unterschied zwischen den Versionen

Aus Foxwiki
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…“
 
Keine Bearbeitungszusammenfassung
 
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
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>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 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.
Zeile 18: Zeile 18:
   ]  
   ]  
  ];
  ];
[[Kategorie:Roundcube/Plugin]]

Aktuelle Version vom 27. August 2023, 15:28 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' 
 ] 
];