Fix css selector and bug checking personal mounts status
This commit is contained in:
parent
674bc8e9cb
commit
70071c8865
|
@ -1,8 +1,8 @@
|
|||
.externalDisabledRow {
|
||||
background-color: #CCC ! important;;
|
||||
#filestable tbody tr.externalDisabledRow {
|
||||
background-color: #CCC;
|
||||
}
|
||||
|
||||
|
||||
.externalErroredRow {
|
||||
background-color: #F2DEDE ! important;;
|
||||
#filestable tbody tr.externalErroredRow {
|
||||
background-color: #F2DEDE;
|
||||
}
|
||||
|
|
|
@ -77,7 +77,7 @@ OCA.External.StatusManager = {
|
|||
} else {
|
||||
defObj = $.ajax({
|
||||
type : 'GET',
|
||||
url: OC.webroot + '/index.php/apps/files_external/globalstorages/' + mountData.id,
|
||||
url: OC.webroot + '/index.php/apps/files_external/' + ((mountData.type === 'personal') ? 'userstorages' : 'globalstorages') + '/' + mountData.id,
|
||||
success : function(response) {
|
||||
if (response && response.status === 0) {
|
||||
self.mountStatus[mountData.mount_point] = response;
|
||||
|
|
Loading…
Reference in New Issue