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
<template> | |
<div class="row"> | |
<md-card class="col s4" md-title="Card title" md-actions="true"> | |
<div> | |
This card has some actions. | |
</div> | |
<div slot="action"> | |
<a href="#">This is a link 1</a> | |
<a href="#">This is a link 2</a> | |
</div> |
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
<template> | |
<require from="./materialize_rtl.css"></require> | |
<div class="row"> | |
<div class="col m6"> | |
<p>Hello, world!</p> | |
</div> | |
<div class="col m6"> | |
<md-checkbox md-checked.bind="true">check box example</md-checkbox> | |
</div> | |
<button md-button click.delegate="toggleDirection()">Toggle Direction</button> |
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
<template> | |
<require from="./au-input"></require> | |
<md-colors></md-colors> | |
<au-input label="A" value.bind="foo.a" percent.bind="foo.percent" salary.bind="foo.salary"></au-input> | |
<au-input label="B" value.bind="foo.b" percent.bind="foo.percent" salary.bind="foo.salary"></au-input> | |
<md-input md-label="Test" md-value.bind="foo.a & validate" md-validate="true" | |
md-validate-success="good"> |
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
<template> | |
<!-- The following require is required as a workaround for last version of materializecss. --> | |
<require from="materialize/dist/css/materialize.css"></require> | |
<require from="./md-select2"></require> | |
<!-- i18n support. --> | |
<br/> | |
<div> | |
<h4>i18n support</h4> | |
<select md-select2="label.two-way: translateMe;" value.two-way="language" change.trigger="updateLanguage()"> |
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
<template> | |
<style> | |
[md-datepicker] + i.material-icons.std-icon-fixup { | |
margin-left: -24px; | |
line-height: 1; | |
margin-top: 12px; | |
cursor: pointer; | |
} | |
</style> | |
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
<template> | |
<require from="./working"></require> | |
<require from="./not-working"></require> | |
<p> | |
<button md-button click.delegate="showNotWorking = true">Show (Not Working)</button> | |
<button md-button click.delegate="showNotWorking = false">Hide</button> | |
</p> | |
<p> | |
<button md-button click.delegate="showWorking = true">Show (Working)</button> | |
<button md-button click.delegate="showWorking = false">Hide</button> |
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
<template> | |
<require from="bootstrap/css/bootstrap.css"></require> | |
<require from="./open-api-info"></require> | |
<nav class="navbar navbar-default" role="navigation"> | |
<div class="navbar-header"> | |
<a class="navbar-brand" href="#"> | |
<i class="fa fa-user"></i> | |
<span> | |
Open API Designer | |
</span> |
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
<template> | |
<require from="./filterPizzaValueConverter"></require> | |
<div style="margin-bottom: 15px;"> | |
Thanks to @eikaramba | |
</div> | |
<div> | |
<md-checkbox md-checked.bind="shouldFilter">filter pizza (changes the array for select)</md-checkbox> | |
<select md-select multiple md-select.ref="select" value.two-way="selectedMeal"> | |
<option value="" disabled>Select your meal</option> | |
<option repeat.for="meal of food | filterPizza:shouldFilter" model.bind="meal" value.bind="meal.id">${meal.name}</option> |
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
<template> | |
<require from="./autocomplete"></require> | |
<form> | |
<label class="form-component"> | |
Country:<br/> | |
<autocomplete service.bind="suggestionService.country" | |
value.bind="model.country" | |
placeholder="Enter country..." | |
change.delegate="model.city = null"> | |
</autocomplete> |
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
<template> | |
<require from="materialize/dist/css/materialize.css"></require> | |
<h5>when md-slider is set to "true" nothing happen and in console log you can find errors. When md-slider i set to "false" everthing is ok. </h5> | |
<md-carousel md-indicators="false" md-slider="true" class="center" style="height: 600px;"> | |
<md-carousel-item class="red white-text" style="background-color: #f99cb1;width: 80%"> | |
<h2>SOME BOOKS <br/> |
NewerOlder