Stackedit/public/html/gdrive-action.html

16 lines
421 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html manifest="cache.manifest">
<head>
<script type="text/javascript">
2014-08-25 08:18:14 +00:00
var redirectUrl = location.href.substring(0, location.href.indexOf("html/gdrive-action.html")) + '/editor';
var state = decodeURI((/state=(.+?)(&|$)/
.exec(location.search) || [ , null ])[1]);
if(state) {
2013-04-21 00:07:27 +00:00
localStorage["gdrive.state"] = state;
}
window.location.replace(redirectUrl);
</script>
</head>
</html>