43 lines
1.0 KiB
HTML
43 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>servers Widget Unit Test</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../../../css/base.css" />
|
|
<link rel="stylesheet" type="text/css" href="../../../css/style.css" />
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container-fluid">
|
|
<div class="row-fluid">
|
|
<div id="servers-test"> </div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type='text/javascript' src='../../../steal/steal.js'></script>
|
|
<script type='text/javascript'>
|
|
steal('jquery/dom/route', 'ods/fixtures', 'ods/ui/servers').then(function($) {
|
|
|
|
var odsState = {
|
|
networking: null,
|
|
servers: [],
|
|
servers_config: null,
|
|
cluster_id: null,
|
|
security: null,
|
|
partition: null,
|
|
feature: null,
|
|
machines: [],
|
|
switches: [],
|
|
snmp: 1
|
|
};
|
|
var state = new $.Observe(odsState);
|
|
$('#servers-test').ods_ui_servers({"odsState": state});
|
|
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|