summaryrefslogtreecommitdiff
path: root/public/js/common.js
diff options
context:
space:
mode:
authorCheng-Han, Wu2016-05-15 10:54:24 +0800
committerCheng-Han, Wu2016-05-15 10:54:24 +0800
commita70ebf77620d6c5651e092cc4998c416161746cf (patch)
tree47deac42c840b770a17e79795b7a8ac5b8320784 /public/js/common.js
parenta816420302b2c38893ab719e2a52c4c4b4ba7b50 (diff)
Update to move dropbox app key setting to common.js and will auto load client-side related scripts
Diffstat (limited to 'public/js/common.js')
-rw-r--r--public/js/common.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/public/js/common.js b/public/js/common.js
index c623cd24..33b30689 100644
--- a/public/js/common.js
+++ b/public/js/common.js
@@ -4,8 +4,10 @@ var urlpath = ''; // sub url path, like: www.example.com/<urlpath>
//settings
var debug = false;
-var GOOGLE_API_KEY = 'change this';
-var GOOGLE_CLIENT_ID = 'change this';
+var GOOGLE_API_KEY = '';
+var GOOGLE_CLIENT_ID = '';
+
+var DROPBOX_APP_KEY = '';
var port = window.location.port;
var serverurl = window.location.protocol + '//' + (domain ? domain : window.location.hostname) + (port ? ':' + port : '') + (urlpath ? '/' + urlpath : '');