summaryrefslogtreecommitdiffstats
path: root/js/config.js
diff options
context:
space:
mode:
authorThomas Tempelmann <tempelmann@gmail.com>2015-06-16 11:42:36 +0200
committerThomas Tempelmann <tempelmann@gmail.com>2015-06-16 11:42:36 +0200
commit114f122186451d57aa490af554d84fd092e2dd2b (patch)
treef52a77d66444437b1fc668479c5f4c80c93a621c /js/config.js
parent580311c8b421992389cef82fb74fd99182c0d1c7 (diff)
downloadwwwsqldesigner-114f122186451d57aa490af554d84fd092e2dd2b.zip
wwwsqldesigner-114f122186451d57aa490af554d84fd092e2dd2b.tar.gz
wwwsqldesigner-114f122186451d57aa490af554d84fd092e2dd2b.tar.bz2
Fixes Dropbox authentication (now calling reset() when needed, and properly done asynchronously)
Diffstat (limited to 'js/config.js')
-rw-r--r--js/config.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/js/config.js b/js/config.js
index a3b372a..afcd8b0 100644
--- a/js/config.js
+++ b/js/config.js
@@ -18,13 +18,13 @@ var CONFIG = {
/*
* The key below needs to be set individually by you if you want to use the Dropbox load/save feature.
* To do that, first sign up with Dropbox (may require a specific developer / SDK sign-up), go to
- * https://www.dropbox.com/developers/apps and use "Create app" to add a new app. Call it, for instance,
- * "wwwsqldesigner", and give it the "App Folder" permission. Unter "OAuth 2", "Redirect URIs", add
- * the URL to the "dropbox-oauth-receiver.html" file on your server. E.g, if you install wwwsqldesigner
- * on your local web server under "http://localhost/sqldesigner/", then add
+ * https://www.dropbox.com/developers/apps and use "Create app" to add a new "Dropbox API app".
+ * Limit the app to its own folder. Call it, for instance, "wwwsqldesigner".
+ * Under "OAuth 2", "Redirect URIs", add the URL to the "dropbox-oauth-receiver.html" file on your server.
+ * E.g, if you install wwwsqldesigner on your local web server under "http://localhost/sqldesigner/", then add
* http://localhost/sqldesigner/dropbox-oauth-receiver.html as a Redirection URI.
- * Copy the shown "App key" and paste it here below:
+ * Copy the shown "App key" and paste it here below instead of the null value:
*/
- DROPBOX_KEY: null // "your app key"
+ DROPBOX_KEY: null // such as: "d6stdscwewhl6sa"
}