This file contains hidden or 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="aurelia-kendoui-bridge/mediaplayer/mediaplayer"></require> | |
<require from="./logger"></require> | |
<div id="example"> | |
<div class="demo-section k-content"> | |
<div id="mediaPlayer" style="height:360px" ak-mediaplayer="k-media.bind: { title: 'Recap of Progress', source: 'https://www.youtube.com/watch?v=tc3xhD24iTU' }; | |
k-auto-play.bind: true; | |
k-navigatable.bind: true; | |
k-widget.bind: mediaPlayer" |
This file contains hidden or 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="aurelia-kendoui-bridge/mediaplayer/mediaplayer"></require> | |
<require from="aurelia-kendoui-bridge/listview/listview"></require> | |
<require from="aurelia-kendoui-bridge/common/template"></require> | |
<div id="mediaPlayer" style="height:360px" ak-mediaplayer="k-autoPlay.bind: true; k-widget.bind: mediaPlayer"> | |
</div> | |
<div class="k-list-container playlist"> | |
<ul id="listView" class="k-list"></ul> | |
<ak-list-view k-data-source.bind="videos" |
This file contains hidden or 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="aurelia-kendoui-bridge/switch/switch"></require> | |
<require from="./value-binding.css!css"></require> | |
<div id="example"> | |
<div class="demo-section k-content"> | |
<p>Notifications are ${isChecked ? 'enabled' : 'disabled'}</p> | |
<input type="checkbox" checked.bind="isChecked"/> | |
<div class="settings-head"></div> |
This file contains hidden or 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="aurelia-kendoui-bridge/switch/switch"></require> | |
<require from="./value-binding.css!css"></require> | |
<div id="example"> | |
<div class="demo-section k-content"> | |
<p>Notifications are ${isChecked ? 'enabled' : 'disabled'}</p> | |
<input type="checkbox" checked.bind="isChecked"/> | |
<div class="settings-head"></div> |
This file contains hidden or 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
import gulp from 'gulp'; | |
import {Server as Karma} from 'karma'; | |
import {CLIOptions} from 'aurelia-cli'; | |
import build from './build'; | |
import watch from './watch'; | |
import * as path from 'path'; | |
let karma = done => { | |
new Karma({ | |
configFile: path.join(__dirname, '/../../karma.conf.js'), |
This file contains hidden or 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="./logger.js"></require> | |
<require from="./selection.css!css"></require> | |
<require from="aurelia-kendoui-bridge/listview/listview"></require> | |
<require from="aurelia-kendoui-bridge/common/template"></require> | |
<style> | |
.red { background-color: red } | |
</style> |
This file contains hidden or 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> | |
<compose view-model="app1"></compose> | |
</template> |
This file contains hidden or 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> | |
<compose view-model="app1"></compose> | |
</template> |
This file contains hidden or 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> | |
<button type="button" click.delegate="add()">add</button> | |
<button type="button" click.delegate="del()">del</button> | |
Iteration ${cnt} | |
<div id="modules-container"> | |
</div> | |
<div if.bind="show"> | |
<compose view.bind="formName" model.bind="this"></compose> | |
</div | |
</template> |
This file contains hidden or 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="aurelia-kendoui-bridge/editor/editor"></require> | |
<div id="example"> | |
<textarea ak-rich-editor value.bind="bodyContent" style="height:440px"> | |
</textarea> | |
</div> | |
</template> |