mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-14 23:24:46 -04:00
Update to move dropbox app key setting to common.js and will auto load client-side related scripts
This commit is contained in:
parent
a816420302
commit
a70ebf7762
7 changed files with 39 additions and 43 deletions
|
@ -1048,6 +1048,35 @@ function showMessageModal(title, header, href, text, success) {
|
|||
modal.modal('show');
|
||||
}
|
||||
|
||||
// check if dropbox app key is set and load scripts
|
||||
if (DROPBOX_APP_KEY) {
|
||||
$('<script>')
|
||||
.attr('type', 'text/javascript')
|
||||
.attr('src', 'https://www.dropbox.com/static/api/2/dropins.js')
|
||||
.attr('id', 'dropboxjs')
|
||||
.attr('data-app-key', DROPBOX_APP_KEY)
|
||||
.appendTo('body');
|
||||
} else {
|
||||
ui.toolbar.import.dropbox.hide();
|
||||
ui.toolbar.export.dropbox.hide();
|
||||
}
|
||||
|
||||
// check if google api key and client id are set and load scripts
|
||||
if (GOOGLE_API_KEY && GOOGLE_CLIENT_ID) {
|
||||
$('<script>')
|
||||
.attr('type', 'text/javascript')
|
||||
.attr('src', 'https://www.google.com/jsapi')
|
||||
.appendTo('body');
|
||||
|
||||
$('<script>')
|
||||
.attr('type', 'text/javascript')
|
||||
.attr('src', 'https://apis.google.com/js/client:plusone.js?onload=onGoogleClientLoaded')
|
||||
.appendTo('body');
|
||||
} else {
|
||||
ui.toolbar.import.googleDrive.hide();
|
||||
ui.toolbar.export.googleDrive.hide();
|
||||
}
|
||||
|
||||
//button actions
|
||||
//share
|
||||
ui.toolbar.publish.attr("href", noteurl + "/publish");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue