-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmedia.mustache
29 lines (25 loc) · 1.04 KB
/
media.mustache
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{{!--
Charcoal Admin Media Template
============================
Display the "media" dashboard, which consists of elFinder in quasi-fullscreen.
--}}
{{> charcoal/admin/template/inc.header }}
<main class="c-page-container o-flex_main">
<header class="c-page-header o-header -small@to-large">
<div class="o-container">
{{> charcoal/admin/template/inc.page-header-inner }}
</div>
</header>
<section class="o-flex">
<script language="javascript" type="text/javascript">
function resizeIframe(obj) {
var ele = document.getElementsByClassName('c-page-header');
obj.style.height = window.innerHeight - ele[0].clientHeight + 'px';
obj.style.width = obj.contentWindow.document.body.scrollWidth + 'px';
}
</script>
{{!-- Object edit section --}}
<iframe width="100%" height="auto" frameborder="0" src="elfinder" onload="javascript:resizeIframe(this);"></iframe>
</section>
</main>
{{> charcoal/admin/template/inc.footer }}