summaryrefslogtreecommitdiff
path: root/plugin_manager/plugin_manager_fixes.js
diff options
context:
space:
mode:
Diffstat (limited to 'plugin_manager/plugin_manager_fixes.js')
-rw-r--r--plugin_manager/plugin_manager_fixes.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/plugin_manager/plugin_manager_fixes.js b/plugin_manager/plugin_manager_fixes.js
new file mode 100644
index 0000000..af08e6e
--- /dev/null
+++ b/plugin_manager/plugin_manager_fixes.js
@@ -0,0 +1,19 @@
+if(window.rcmail){
+ rcmail.addEventListener('init', function(){
+ // logo click (all Roundcube versions)
+ if(rcmail.env.skin == 'larry'){
+ $('#toplogo').attr('onclick', '');
+ $('#toplogo').click(function(){
+ $('.button-mail').click();
+ });
+ $('#toplogo').attr('style', 'cursor: pointer');
+ }
+ });
+
+ // fix date alignment
+ if(rcmail.env.task == 'mail' && !rcmail.env.framed && !rcmail.env.extwin){
+ rcmail.addEventListener('listupdate', function(){
+ $(window).trigger('resize');
+ });
+ }
+}