diff options
author | alecpl <alec@alec.pl> | 2012-03-08 10:42:08 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-03-08 10:42:08 +0000 |
commit | fe83748f02fa9828f272172a4197ec3aca05f428 (patch) | |
tree | 2939f77bee7b775ad7c3b97d2b238497f0e6d8aa /skins/larry/ui.js | |
parent | e97f0109eae8286c54ad6bc191b7231bce8a635c (diff) |
- Larry: Add quota indicator in folder manager
Diffstat (limited to 'skins/larry/ui.js')
-rw-r--r-- | skins/larry/ui.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js index d7ef9ae0c..8a66a8cc4 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -134,6 +134,8 @@ function rcube_mail_ui() if (rcmail.env.action == 'folders') { new rcube_splitter({ id:'folderviewsplitter', p1:'#folderslist', p2:'#folder-details', orientation:'v', relative:true, start:305, min:150, size:12 }).init(); + + rcmail.addEventListener('setquota', update_quota); } else if (rcmail.env.action == 'identities') { new rcube_splitter({ id:'identviewsplitter', p1:'#identitieslist', p2:'#identity-details', @@ -337,7 +339,7 @@ function rcube_mail_ui() else { $('#googie_edit_layer').height(h+'px'); } - + var abooks = $('#directorylist'); $('#compose-contacts .scroller').css('top', abooks.position().top + abooks.outerHeight()); } |