summaryrefslogtreecommitdiff
path: root/template/fullscreen2.st
blob: 38a5e2b2e32ec7b3933bb4a7567a42793952cc27 (plain)
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
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">


	$head()$
  <title>$roomname$ dump.fm</title>

  <script>
    jQuery(document).ready(initChat);
    var Nick = $json_user_nick$;
    var Room = $json_room_key$;
    var Timestamp = $timestamp$;
    var Version = $version$;
  </script>
    	<script type="text/javascript" src="$domain$/static/js/supersized.js"></script>
	<script type="text/javascript">
	
	jQuery(function(){
		jQuery.fn.supersized.options = {  
			startwidth: 1024,  
			startheight: 768,
			minsize: .50,
			slideshow: 1,
			slideinterval: 5000  
		};
        jQuery('#supersize').supersized(); 
    });

</script>
		
  <link rel="stylesheet" type="text/css" href="/static/css/fullscreen2.css?v=20260129">
</head><body>
$messages: { m |
<div style="width: 1224px; height: 918px;" id="supersize">
  <div id="message-$m.message_id$">
          <span class="content">$m.content$</span>
</div>        </div>

}$


</body></html>