Add the legacy frontend themes, scripts, and plugin assets required by the main SPOTA interfaces.
83 lines
3.5 KiB
HTML
83 lines
3.5 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
|
|
|
|
<title>dynatree - Q'n'd test for release</title>
|
|
|
|
<!--
|
|
OLD jQuery 1.3 UI 1.7
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.js" type="text/javascript"></script>
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7/jquery-ui.js" type="text/javascript"></script>
|
|
<script src="../jquery/jquery.cookie.js" type="text/javascript"></script>
|
|
<link href="../src/skin/ui.dynatree.css" rel="stylesheet" type="text/css">
|
|
<script src="../src/jquery.dynatree.js" type="text/javascript"></script>
|
|
LATEST CDN
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.js" type="text/javascript"></script>
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.js" type="text/javascript"></script>
|
|
<script src="../jquery/jquery.cookie.js" type="text/javascript"></script>
|
|
<link href="../src/skin/ui.dynatree.css" rel="stylesheet" type="text/css">
|
|
<script src="../src/jquery.dynatree.js" type="text/javascript"></script>
|
|
DIST
|
|
<script src="../jquery/jquery.js" type="text/javascript"></script>
|
|
<script src="../jquery/jquery-ui.custom.js" type="text/javascript"></script>
|
|
<script src="../jquery/jquery.cookie.js" type="text/javascript"></script>
|
|
<link href="../src/skin/ui.dynatree.css" rel="stylesheet" type="text/css">
|
|
<script src="../src/jquery.dynatree.js" type="text/javascript"></script>
|
|
MINIFIED DIST
|
|
<script src="../jquery/jquery.min.js" type="text/javascript"></script>
|
|
<script src="../jquery/jquery-ui.custom.min.js" type="text/javascript"></script>
|
|
<script src="../jquery/jquery.cookie.js" type="text/javascript"></script>
|
|
<link href="../src/skin/ui.dynatree.css" rel="stylesheet" type="text/css">
|
|
<script src="../src/jquery.dynatree.min.js" type="text/javascript"></script>
|
|
-->
|
|
<!-- Include the required JavaScript libraries: -->
|
|
<script src="../jquery/jquery.min.js" type="text/javascript"></script>
|
|
<script src="../jquery/jquery-ui.custom.min.js" type="text/javascript"></script>
|
|
<script src="../jquery/jquery.cookie.js" type="text/javascript"></script>
|
|
<link href="../src/skin/ui.dynatree.css" rel="stylesheet" type="text/css">
|
|
<script src="../src/jquery.dynatree.min.js" type="text/javascript"></script>
|
|
|
|
<!-- Add code to initialize the tree when the document is loaded: -->
|
|
<script type="text/javascript">
|
|
|
|
alert("$.ui.version: " + $.ui.version + "\n"
|
|
+ "$.jquery.version: " + jQuery.fn.jquery);
|
|
|
|
$(function(){
|
|
// Attach the dynatree widget to an existing <div id="tree"> element
|
|
// and pass the tree options as an argument to the dynatree() function:
|
|
$("#tree").dynatree({
|
|
onActivate: function(node) {
|
|
// A DynaTreeNode object is passed to the activation handler
|
|
// Note: we also get this event, if persistence is on, and the page is reloaded.
|
|
alert("You activated " + node.data.title);
|
|
},
|
|
onSelect: function(select, node) {
|
|
logMsg("onSelect(%o, %o)", node);
|
|
var s = node.tree.getSelectedNodes().join(", ");
|
|
$("#echoSelected").text(s);
|
|
},
|
|
// persist: true,
|
|
children: [
|
|
{title: "Item 1"},
|
|
{title: "Folder 2", isFolder: true, key: "folder2",
|
|
children: [
|
|
{title: "Sub-item 2.1"},
|
|
{title: "Sub-item 2.2"}
|
|
]
|
|
},
|
|
{title: "Item 3"}
|
|
]
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<!-- Add a <div> element where the tree should appear: -->
|
|
<p>This tree uses the minified JS library. (Check this with IE!)</p>
|
|
<div id="tree"> ERROR: Tree could not be loaded!</div>
|
|
|
|
</body>
|
|
</html>
|