blob: 9e1427e4603d44222b647481f2c049f81ba0d60d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
$(document).ready(function() {
function generateUrl($tr) {
var app_key = $tr.find('[data-parameter="app_key"]').val();
if (app_key) {
return 'https://www.dropbox.com/developers/apps/info/' + app_key;
} else {
return 'https://www.dropbox.com/developers/apps';
}
}
OCA.External.Settings.mountConfig.whenSelectBackend(function($tr, backend, onCompletion) {
if (backend === 'dropbox') {
var config = $tr.find('.configuration');
var el = $(document.createElement('a'))
.attr('href', generateUrl($tr))
.attr('target', '_blank')
.text(t('files_external', 'Dropbox Configuration') + ' ↗')
;
el.on('click', function(event) {
var a = $(event.target);
a.attr('href', generateUrl($(this).parent()));
});
config.append(el);
}
});
});
|