View aureliatools.cla
Aurelia Tools LLC Individual Contributor License Agreement | |
Thank you for Your interest in Aurelia Tools and Aurelia UI Toolkits open source projects. This document clarifies the terms under which You, the person listed below, may make Contributions — which may include without limitation, software, bug fixes, configuration changes, documentation, or any other materials — to any of the projects owned or managed by Aurelia Tools. | |
Please complete the following information about You and the Contributions. If You have questions about these terms, please contact us at legal@bluespire.com. You accept and agree to the following terms and conditions for Your present and future Contributions submitted to Blue Spire projects. Except for the license granted herein to Aurelia Tools, You reserve all right, title, and interest in and to Your Contributions. | |
Licenses | |
Aurelia Tools public projects (code, documentation, and any other materials) are released under the terms of the MIT license, with the following exception: | |
Co |
View app.html
<template> | |
<div id="example"> | |
<div class="demo-section k-content"> | |
<p><strong>People:</strong></p> | |
<ak-autocomplete k-data-source.bind="items"> | |
<input style="width: 100%;"> | |
</ak-autocomplete> | |
<p class="demo-hint" style="word-break: break-all">Type a name, available values in the list are: ${ items } </p> | |
</div> | |
</div> |
View app.html
<template> | |
<ak-chart k-title.bind="{text: 'Gross Domestic product growth \n /GDP annual %/'}" | |
k-legend.bind="{position: 'bottom'}" | |
k-series-defaults.bind="seriesDefaults" | |
k-series.bind="series" | |
k-value-axis.bind="valueAxis" | |
k-category-axis.bind="categoryAxis" | |
k-tooltip.bind="tooltip"> | |
</ak-chart> | |
</template> |
View app.html
<!-- put your view here --> | |
<template> | |
<p>Loaded</p> | |
</template> |
View about.html
<template> | |
<section> | |
<h4>About</h4> | |
</section> | |
</template> |
View app.html
<!-- app.html --> |
View app.html
<template> | |
<div id="example"> | |
<div class="box wide hidden-on-narrow" style="z-index:10000"> | |
<div class="box-col"> | |
<h4>API Functions</h4> | |
<ul class="options"> | |
<li> | |
<button click.delegate="window.open()" ak-button>Open</button> | |
<button click.delegate="window.close()" ak-button>Close</button> | |
</li> |
View app.html
<template> | |
<require from="./logger.js"></require> | |
<require from="./events.css"></require> | |
<div id="example"> | |
<div class="box"> | |
<h4>Console log</h4> | |
<logger view-model.ref="logger"></logger> | |
</div> |
View ajax.css
#undo { | |
text-align: center; | |
position: absolute; | |
white-space: nowrap; | |
border-width: 1px; | |
border-style: solid; | |
padding: 2em; | |
cursor: pointer; | |
} |
View app.html
<template> | |
<require from="./customizing-actions.css"></require> | |
<div id="example"> | |
<div id="window" | |
ak-window="k-width: 500px; k-title: About Josef Hoffmann; k-actions.bind: actions; k-widget.bind: window" | |
k-on-close.delegate="onClose()"> | |
<div class="armchair-cust"><img src="http://demos.telerik.com/kendo-ui/content/web/window/kubus-armchair.png" alt="Josef Hoffmann - Kubus Armchair" /> Josef Hoffmann - Kubus Armchair</div> | |
<p>Josef Hoffmann studied architecture at the Academy of Fine Arts in Vienna, Austria, under Art Nouveau architect Otto Wagner, whose theories of functional, modern architecture profoundly influenced his works, and in 1896 he joined his office.</p> | |
<p>In 1898, he established his own practice in Vienna. In 1897, inspired by Mackintosh and the Glasgow School, he was one of the founding members with Gustav Klimt, of an association of revolutionary artists and architects, the Vienna Secession.</p> |
NewerOlder