Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix global_toolbar for safari
Browse files Browse the repository at this point in the history
Fix empty_recycle: call parseXmlMessage
  • Loading branch information
cdujeu committed Sep 24, 2016
1 parent 7766fb4 commit f0a3963
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/src/plugins/access.fs/fsActions.xml
Expand Up @@ -205,7 +205,9 @@
<serverCallback methodName="switchAction" restParams="/"/>
<clientCallback prepareModal="false"><![CDATA[
modal.showDialogForm('EmptyRecycle', 'empty_recycle_form', null, function(){
PydioApi.getClient().request({get_action:'empty_recycle'});
PydioApi.getClient().request({get_action:'empty_recycle'}, function(transport){
PydioApi.getClient().parseXmlMessage(transport.responseXML);
});
hideLightBox(true);
return false;
});
Expand Down
1 change: 1 addition & 0 deletions core/src/plugins/gui.ajax/res/themes/orbit/css/pydio.css
Expand Up @@ -6353,6 +6353,7 @@ div.dialogButtons.inlineEdition input {
}
#ajxp_desktop[class^="ajxp_ws-"] #global_toolbar,
#ajxp_desktop[class*=" ajxp_ws-"] #global_toolbar {
position: relative;
height: 47px;
padding: 0 15px 0 5px;
background: #009688 no-repeat 7px 7px;
Expand Down
Expand Up @@ -68,6 +68,7 @@

#ajxp_desktop[class^="ajxp_ws-"] #global_toolbar,
#ajxp_desktop[class*=" ajxp_ws-"] #global_toolbar {
position: relative;
height: @globalToolbarHeight;
padding: 0 15px 0 5px;
background: @topBarBackgroundColor no-repeat 7px 7px;
Expand Down

0 comments on commit f0a3963

Please sign in to comment.