Intermédiaire
This commit is contained in:
44
Sources/webAduc/www/vendor/vakata/jstree/test/visual/desktop/index.html
vendored
Normal file
44
Sources/webAduc/www/vendor/vakata/jstree/test/visual/desktop/index.html
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Light theme visual tests</title>
|
||||
<link rel="stylesheet" href="./../../../dist/themes/default/style.min.css">
|
||||
<link rel="stylesheet" href="./../../../dist/themes/default-dark/style.min.css">
|
||||
<style>.tree { border:1px solid black; padding:10px; width:300px; margin:20px; float:left; min-height:200px; }</style>
|
||||
</head>
|
||||
<body style="background:white;">
|
||||
<div class="tree" id="empty"></div>
|
||||
<div class="tree" id="core"><ul><li>asdf</li></ul></div>
|
||||
<div class="tree" id="tree">
|
||||
<ul>
|
||||
<li>Node 01
|
||||
<ul>
|
||||
<li>Node</li>
|
||||
<li>Node</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Node 02</li>
|
||||
<li data-jstree='{"opened" : true}'>Node 03
|
||||
<ul>
|
||||
<li>Node</li>
|
||||
<li>Node</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Node 04</li>
|
||||
<li>Node 05</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tree" id="full"><ul><li data-jstree='{ "selected" : true, "type" : "file" }'>full</li><li>asdf</li></ul></div>
|
||||
<div class="tree" id="dark"><ul><li data-jstree='{ "selected" : true, "type" : "file"}'>full</li><li>asdf</li></ul></div>
|
||||
|
||||
<script src="./../../../dist/libs/jquery.js"></script>
|
||||
<script src="./../../../dist/jstree.min.js"></script>
|
||||
<script>
|
||||
$('#empty').jstree();
|
||||
$('#tree, #core').jstree();
|
||||
$('#full').jstree({ plugins : ["checkbox","sort","types","wholerow"], "types" : { "file" : { "icon" : "jstree-file" } } });
|
||||
$('#dark').jstree({ plugins : ["checkbox","sort","types","wholerow"], "core" : { "themes" : { "name" : "default-dark" } }, "types" : { "file" : { "icon" : "jstree-file" } } });
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
42
Sources/webAduc/www/vendor/vakata/jstree/test/visual/mobile/index.html
vendored
Normal file
42
Sources/webAduc/www/vendor/vakata/jstree/test/visual/mobile/index.html
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Mobile theme visual tests</title>
|
||||
<link rel="stylesheet" href="./../../../dist/themes/default/style.min.css">
|
||||
<link rel="stylesheet" href="./../../../dist/themes/default-dark/style.min.css">
|
||||
<style>.tree { border:1px solid black; padding:10px; width:300px; margin:20px; float:left; min-height:200px; }</style>
|
||||
</head>
|
||||
<body style="background:white;">
|
||||
<div class="tree" id="tree">
|
||||
<ul>
|
||||
<li>Node 01
|
||||
<ul>
|
||||
<li>Node</li>
|
||||
<li>Node</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Node 02</li>
|
||||
<li data-jstree='{"opened" : true}'>Node 03
|
||||
<ul>
|
||||
<li>Node</li>
|
||||
<li>Node</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Node 04</li>
|
||||
<li>Node 05</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tree" id="full"><ul><li data-jstree='{ "selected" : true, "type" : "file" }'>full</li><li>asdf</li></ul></div>
|
||||
<div class="tree" id="dark"><ul><li data-jstree='{ "selected" : true, "type" : "file"}'>full</li><li>asdf</li></ul></div>
|
||||
|
||||
<script src="./../../../dist/libs/jquery.js"></script>
|
||||
<script src="./../../../dist/jstree.min.js"></script>
|
||||
<script>
|
||||
$.jstree.defaults.core.themes.responsive = true;
|
||||
$('#tree').jstree();
|
||||
$('#full').jstree({ plugins : ["checkbox","sort","types","wholerow"], "types" : { "file" : { "icon" : "jstree-file" } } });
|
||||
$('#dark').jstree({ plugins : ["checkbox","sort","types","wholerow"], "core" : { "themes" : { "name" : "default-dark" } }, "types" : { "file" : { "icon" : "jstree-file" } } });
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
BIN
Sources/webAduc/www/vendor/vakata/jstree/test/visual/screenshots/desktop/.png
vendored
Normal file
BIN
Sources/webAduc/www/vendor/vakata/jstree/test/visual/screenshots/desktop/.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
BIN
Sources/webAduc/www/vendor/vakata/jstree/test/visual/screenshots/desktop/desktop.png
vendored
Normal file
BIN
Sources/webAduc/www/vendor/vakata/jstree/test/visual/screenshots/desktop/desktop.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
BIN
Sources/webAduc/www/vendor/vakata/jstree/test/visual/screenshots/desktop/home.png
vendored
Normal file
BIN
Sources/webAduc/www/vendor/vakata/jstree/test/visual/screenshots/desktop/home.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
BIN
Sources/webAduc/www/vendor/vakata/jstree/test/visual/screenshots/mobile/.png
vendored
Normal file
BIN
Sources/webAduc/www/vendor/vakata/jstree/test/visual/screenshots/mobile/.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.2 KiB |
BIN
Sources/webAduc/www/vendor/vakata/jstree/test/visual/screenshots/mobile/home.png
vendored
Normal file
BIN
Sources/webAduc/www/vendor/vakata/jstree/test/visual/screenshots/mobile/home.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.2 KiB |
BIN
Sources/webAduc/www/vendor/vakata/jstree/test/visual/screenshots/mobile/mobile.png
vendored
Normal file
BIN
Sources/webAduc/www/vendor/vakata/jstree/test/visual/screenshots/mobile/mobile.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
Reference in New Issue
Block a user