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> | |
<h1>${message}</h1> | |
</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
<template> | |
<require from="keys"></require> | |
<require from="stringTypeOf"></require> | |
<require from="titlerize"></require> | |
<form class="form-horizontal form-label-left input_mask"> | |
<div class="form-group" repeat.for="key of data | keys"> | |
Key: ${key}, Value: ${data[key]} | |
<br> | |
<label class="control-label col-md-3 col-sm-3 col-xs-12">Title: ${key | titlerize}</label> |
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
var Thing = { | |
load: function() { | |
var resolve, reject; | |
function finished() { | |
resolve({}) | |
} | |
function errored() { | |
reject({}); |