circles/js/files
Azul 54cafbe389 fix: do not rely on api global
The api files relied on an api global to handle responses:

```javascript
$.ajax({ ...
}).done(function (res) {
	api.onCallback(callback, res);
}).fail(function () {
	api.onCallback(callback, result);
});
```

In the files app this only worked
because circles.files.app.js added api as a global.

Remove that global and replace it with
```javascript
OCA.Circles.api
```
wherever it was used.

Signed-off-by: Azul <azul@riseup.net>
2020-07-28 14:10:15 +02:00
..
circles.files.app.js fix: do not rely on api global 2020-07-28 14:10:15 +02:00
circles.files.list.js fix some translation 2020-04-01 09:29:09 -01:00