-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrapper.html
More file actions
51 lines (48 loc) · 1.75 KB
/
wrapper.html
File metadata and controls
51 lines (48 loc) · 1.75 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<div class="container-fluid">
<div id="page-wrapper" style="margin-left:0px;margin-top:40px;-webkit-border-radius: 3px;-moz-border-radius: 3px;border-radius: 3px;min-height:10px;padding-bottom:20px;height:auto;">
<div class="panel-body content" page="wrapper">
</div>
</div>
</div>
<div id="footer" style="display:none;">
<div class="x100 footerleft">
<b><a href="//synload.com" target="_blank">Synload Development</a> © 2014 Video Converter</b><br/>Running <a href="//github.com/firestar/synloadframework" target="_blank">Synload Framework 1.0.1</a> with Video Converter Module
</div>
<div class="x33" id="pr_c">
<div class="progress"><div class="bar"></div><span></span></div>
</div>
</div>
<div id="fileRemaining">
<ul>
<li></li>
</ul>
</div>
<input type="file" name="files[]" style="display:none;" id="filez" multiple>
<script>
$(function() {
$('#side-menu').metisMenu();
$("#pr_c").hover(function(){
$("#fileRemaining").css({"top":($("#footer").position().top-$("#footer").outerHeight()-$("#fileRemaining").outerHeight())+"px"});
$("#fileRemaining").fadeIn();
},function(){
$("#fileRemaining").fadeOut();
});
$(window).bind("load resize", function() {
if ($(this).width() < 768) {
$('div.sidebar-collapse').addClass('collapse');
} else {
$('div.sidebar-collapse').removeClass('collapse');
}
$("#footer").css({"marginTop":"-"+$("#footer").outerHeight()+"px"});
})
$(".navibar").mouseleave(function(){
page.hideMenu();
})
$(".navbar-brand").mouseenter(function(){
page.showMenu();
});
$("#footer").animate({"marginTop":"-"+$("#footer").outerHeight()+"px"},function(){
$("#footer").fadeIn();
});
});
</script>