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 {customAttribute, bindable, LogManager} from 'aurelia-framework'; | |
const logger:Logger = LogManager.getLogger("attached"); | |
/** | |
* MIT License. Patrick Eisenmann. | |
* Apply this attribute to an element to have a callback invoked when the element added to the DOM | |
* | |
* @param {Function} callback. Required. The function to be invoked. | |
* The first argument to the callback is the Element that had the attached on it. |
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="./page"></require> | |
<div class="container-fluid"> | |
<div class="row"> | |
<div class="col-xs-12"> | |
<page></page> | |
</div> | |
</div> | |
</div> |