Support export to and import from Google Drive

This commit is contained in:
Cheng-Han, Wu 2016-03-04 23:17:35 +08:00
parent c183002c14
commit 845ef9bad6
8 changed files with 528 additions and 5 deletions

View file

@ -2,6 +2,9 @@
var domain = 'change this'; // domain name
var urlpath = ''; // sub url path, like: www.example.com/<urlpath>
var GOOGLE_API_KEY = 'change this';
var GOOGLE_CLIENT_ID = 'change this';
var port = window.location.port;
var serverurl = window.location.protocol + '//' + domain + (port ? ':' + port : '') + (urlpath ? '/' + urlpath : '');
var noteid = urlpath ? window.location.pathname.slice(urlpath.length + 1, window.location.pathname.length).split('/')[1] : window.location.pathname.split('/')[1];