summaryrefslogtreecommitdiffstats
path: root/templates/page-minilinux.html
blob: 1cb9d9dda8907c181c986346b79260eb2a2e1e98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="container" id="systemlist">
	<div class="panel panel-default">{{lang_listObtained}}</div>
	<script type="text/javascript">
		var slx_check = setInterval(function() {
			if (typeof $ === 'undefined') return;
			clearInterval(slx_check);
			$('#systemlist').load('{{{listurl}}}', function( response, status, xhr ) {
				if ( status === "error" ) {
					var msg = "{{lang_errorGetting}}";
					$( "#systemlist" ).html( msg + xhr.status + " " + xhr.statusText );
				}
			})
		}, 100);
	</script>
</div>