2016-08-10 23:49:25 +08:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
2016-09-23 17:42:12 +08:00
|
|
|
<head>
|
2016-08-10 23:49:25 +08:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
<!-- Enable IE Standards mode -->
|
|
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
|
|
|
2017-03-06 20:55:07 +08:00
|
|
|
<title><%= t('assets.head_title.view', file_name: @asset.file_file_name) %></title>
|
2016-08-10 23:49:25 +08:00
|
|
|
<meta name="description" content="">
|
|
|
|
<meta name="viewport"
|
2016-09-23 17:42:12 +08:00
|
|
|
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
|
2016-08-10 23:49:25 +08:00
|
|
|
|
2016-09-29 18:19:29 +08:00
|
|
|
<link rel="shortcut icon" href='<%= @favicon_url %>' />
|
2016-08-10 23:49:25 +08:00
|
|
|
|
|
|
|
<style type="text/css">
|
2016-09-23 17:42:12 +08:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow:hidden;
|
|
|
|
-ms-content-zooming: none;
|
|
|
|
}
|
|
|
|
#office_frame {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: 0;
|
|
|
|
border: none;
|
|
|
|
display: block;
|
|
|
|
}
|
2016-08-10 23:49:25 +08:00
|
|
|
</style>
|
2016-09-23 17:42:12 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
2016-09-29 18:19:29 +08:00
|
|
|
<form id='office_form' name='office_form' target='office_frame'
|
|
|
|
action='<%= @action_url %>' method='post'>
|
|
|
|
<input name='access_token' value='<%= @token %>' type='hidden'/>
|
|
|
|
<input name='access_token_ttl' value='<%= @ttl %>' type='hidden'/>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<span id="frameholder"></span>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var frameholder = document.getElementById('frameholder');
|
|
|
|
var office_frame = document.createElement('iframe');
|
|
|
|
office_frame.name = 'office_frame';
|
|
|
|
office_frame.id ='office_frame';
|
|
|
|
// The title should be set for accessibility
|
|
|
|
office_frame.title = 'Office Online Frame';
|
|
|
|
// This attribute allows true fullscreen mode in slideshow view
|
|
|
|
// when using PowerPoint Online's 'view' action.
|
|
|
|
office_frame.setAttribute('allowfullscreen', 'true');
|
|
|
|
frameholder.appendChild(office_frame);
|
|
|
|
document.getElementById('office_form').submit();
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
2016-09-23 17:42:12 +08:00
|
|
|
</html>
|