summaryrefslogtreecommitdiffstats
path: root/templates/page-minilinux.html
blob: df245ef050644dde43ed9ce62b40156595cf9d33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div 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>