-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0777ca6
commit 05705a0
Showing
100 changed files
with
3,310 additions
and
3,300 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<template> | ||
<require from="./breadcrumbs.css"></require> | ||
<require from="./instructionFilter"></require> | ||
<nav> | ||
<div class="nav-wrapper"> | ||
<div class="col s12"> | ||
<template repeat.for="instruction of router.currentInstruction.getAllInstructions() | instructionFilter"> | ||
<a click.delegate="navigate(instruction)" class="breadcrumb"> | ||
${instruction.config.title} | ||
</a> | ||
</template> | ||
</div> | ||
</div> | ||
</nav> | ||
</template> | ||
<template> | ||
<require from="./breadcrumbs.css"></require> | ||
<require from="./instructionFilter"></require> | ||
<nav> | ||
<div class="nav-wrapper"> | ||
<div class="col s12"> | ||
<template repeat.for="instruction of router.currentInstruction.getAllInstructions() | instructionFilter"> | ||
<a click.delegate="navigate(instruction)" class="breadcrumb"> | ||
${instruction.config.title} | ||
</a> | ||
</template> | ||
</div> | ||
</div> | ||
</nav> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<template class="carousel-item"> | ||
<a if.bind="href" href.bind="href"> | ||
<img if.bind="image" src.bind="image" /> | ||
</a> | ||
<img if.bind="!href && image" src.bind="image" /> | ||
<slot></slot> | ||
</template> | ||
<template class="carousel-item"> | ||
<a if.bind="href" href.bind="href"> | ||
<img if.bind="image" src.bind="image" /> | ||
</a> | ||
<img if.bind="!href && image" src.bind="image" /> | ||
<slot></slot> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<template> | ||
<label for="${controlId}"> | ||
<input type="checkbox" id="${controlId}" checked.bind="checked" matcher.bind="matcher" model.bind="model" ref="checkbox"> | ||
<span><slot></slot></span> | ||
</label> | ||
</template> | ||
<template> | ||
<label for="${controlId}"> | ||
<input type="checkbox" id="${controlId}" checked.bind="checked" matcher.bind="matcher" model.bind="model" ref="checkbox"> | ||
<span><slot></slot></span> | ||
</label> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<template class="chip"> | ||
<require from="./chip.css"></require> | ||
<slot></slot> | ||
<i show.bind="hasClose" class="material-icons" click.delegate="closeChip()">close</i> | ||
</template> | ||
<template class="chip"> | ||
<require from="./chip.css"></require> | ||
<slot></slot> | ||
<i show.bind="hasClose" class="material-icons" click.delegate="closeChip()">close</i> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<template> | ||
<h2>Click counter</h2> | ||
|
||
<button md-waves class="btn" click.delegate="increment()">Button</button> | ||
|
||
<h2>Button was clicked ${count} times</h2> | ||
</template> | ||
<template> | ||
<h2>Click counter</h2> | ||
|
||
<button md-waves class="btn" click.delegate="increment()">Button</button> | ||
|
||
<h2>Button was clicked ${count} times</h2> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<template> | ||
<require from="./md-collection-selector.css"></require> | ||
<div class="md-collection-selector__checkbox"> | ||
<slot></slot> | ||
<div> | ||
<md-checkbox checked.two-way="isSelected" disabled.bind="mdDisabled"></md-checkbox> | ||
</div> | ||
</template> | ||
<template> | ||
<require from="./md-collection-selector.css"></require> | ||
<div class="md-collection-selector__checkbox"> | ||
<slot></slot> | ||
<div> | ||
<md-checkbox checked.two-way="isSelected" disabled.bind="mdDisabled"></md-checkbox> | ||
</div> | ||
</template> |
Oops, something went wrong.