Skip to content

Instantly share code, notes, and snippets.

@mattduffield
Last active October 10, 2016 17:50
Show Gist options
  • Select an option

  • Save mattduffield/7ad8ae7e7e036c7bc910e2260d451ad6 to your computer and use it in GitHub Desktop.

Select an option

Save mattduffield/7ad8ae7e7e036c7bc910e2260d451ad6 to your computer and use it in GitHub Desktop.
Aurelia Gist - Custom Attribute - my-focus
<template>
<require from='my-focus'></require>
<h1>${title}</h1>
<form>
<label>First Name</label>
<input value.bind="firstName"
placeholder="First Name" my-focus>
<p>${firstName}</p>
</form>
</template>
export class App {
title = 'Custom Attribute - my-focus';
firstName;
}
<!doctype html>
<html>
<head>
<title>Aurelia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.panel {
border: 1px solid black;
}
.panel-heading {
background: lightblue;
color: white;
border-bottom: 1px solid black;
padding: 3px;
font-size: 20px;
}
.panel-body {
padding: 3px;
}
</style>
</head>
<body aurelia-app>
<h1>Loading...</h1>
<script src="https://jdanyow.github.io/rjs-bundle/node_modules/requirejs/require.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/config.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/aurelia.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/babel.js"></script>
<script>
require(['aurelia-bootstrapper']);
</script>
</body>
</html>
import {customAttribute, DOM} from 'aurelia-framework';
@customAttribute('my-focus')
export class MyFocus {
static inject = [DOM.Element];
constructor(element) {
this.element = element;
}
attached() {
this.element.focus();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment