[go: nahoru, domu]

Skip to content

Commit

Permalink
regenerated WEBSITE
Browse files Browse the repository at this point in the history
  • Loading branch information
brigadir committed Dec 7, 2017
1 parent 07b08d1 commit 1c5e170
Show file tree
Hide file tree
Showing 42 changed files with 396 additions and 358 deletions.
2 changes: 1 addition & 1 deletion website/dark/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">

<script type="text/javascript" src="/build/zebkit.js?16092017"> </script>
<script type="text/javascript" src="/build/zebkit.js?11072017"> </script>

<script type="text/javascript">
zebkit.ui.config("theme", "dark");
Expand Down
76 changes: 52 additions & 24 deletions website/dark/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">

<script type="text/javascript" src="/build/zebkit.js?16092017"> </script>
<script type="text/javascript" src="/build/zebkit.js?11072017"> </script>

<script type="text/javascript">
zebkit.ui.config("theme", "dark");
Expand Down Expand Up @@ -620,7 +620,7 @@ <h1 class="page-title">Zebkit ?</h1>
}

var cpan = new ui.Panel().setPreferredSize(230, 120);
cpan.setLayout(new layout.StackLayout());
cpan.setStackLayout();
cpan.add(new SimpleChart(function(x) {
return Math.cos(x) * Math.sin(x) - 2 * Math.sin(x*x);
}, -2, 5, "#FF7744"));
Expand Down Expand Up @@ -749,7 +749,7 @@ <h1 class="page-title">Zebkit ?</h1>
root = new ui.Panel(new layout.FlowLayout("center",
"center",
"vertical", 16));
zcan.root.setLayout(new layout.FlowLayout(16));
zcan.root.setFlowLayout(16);
zcan.root.add(root);


Expand Down Expand Up @@ -888,7 +888,7 @@ <h1 class="page-title">Zebkit ?</h1>
"out" : "orange",
"pressed.over" : "black"
});
b.setBorder(new Cloud("red", 4));
b.setBorder(new Cloud("red", null, 4));
b.setPreferredSize(140, 90);
root.add(b);

Expand Down Expand Up @@ -999,7 +999,7 @@ <h1 class="page-title">Zebkit ?</h1>
<script>
zebkit.require("ui", "layout", function(ui, layout) {
var root = new ui.zCanvas("jsonSample", 300, 300).root;
root.setLayout(new layout.StackLayout());
root.setStackLayout();
zebkit.Zson.then("public/simpleapp.json").then(function(bag) {
root.add(bag.root);
}).catch();
Expand Down Expand Up @@ -1029,7 +1029,7 @@ <h1 class="page-title">Zebkit ?</h1>
function(ui, gr, tr, design, layout)
{
var root = new ui.zCanvas("sampleRichSet", 650, 750).root;
root.setLayout(new layout.RasterLayout(true));
root.setRasterLayout(true);

root.add(new ui.Button("Button"));
root.add(new ui.Button(
Expand Down Expand Up @@ -1116,25 +1116,53 @@ <h1 class="page-title">Zebkit ?</h1>
tabs.add("Border panel", p);
root.add(tabs.setLocation(290, 80));

var mbar = new ui.Menubar({
"Menu Item 1" : [
"[x]Sub Item 1",
"-",
"Sub Item 2",
"Sub Item 3" ],
"Menu Item 2" : [
"()Sub Item 1",
"()Sub Item 2",
"(x)Sub Item 3" ],
"Menu Item 3": {
"Sub Item 1" : null,
"Sub Item 2" : {
"Sub Item 1" : null,
"Sub Item 2" : null,
"Sub Item 3" : null
}
var grp = new ui.Group();
var mbar = new ui.Menubar([
{
content: "Menu Item 1",
sub : [
{
content: "Sub Item 1",
checked: true
},
"-",
"Sub Item 2",
"Sub Item 3"
]
},
{
content: "Menu Item 2",
sub: [
{
content: "Sub Item 1",
group: grp
},
{
content: "Sub Item 2",
group: grp
},
{
content: "Sub Item 3",
group: grp,
checked: true
}
]
},
{
content: "Menu Item 3",
sub: [
"Sub Item 1",
{
content: "Sub Item 2",
sub: [
"Sub Item 1",
"Sub Item 2",
"Sub Item 3"
]
}
]
}
}).setLocation(250, 0);
]).setLocation(250, 0);
root.add(mbar);

var tree = new tr.CompTree({
Expand Down
2 changes: 1 addition & 1 deletion website/dark/api.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">

<script type="text/javascript" src="/build/zebkit.js?16092017"> </script>
<script type="text/javascript" src="/build/zebkit.js?11072017"> </script>

<script type="text/javascript">
zebkit.ui.config("theme", "dark");
Expand Down
Loading

0 comments on commit 1c5e170

Please sign in to comment.