fix(): correct config to allow for watch and live-reload on test folders.

This commit is contained in:
Josh Thomas
2017-07-14 08:29:05 -05:00
parent 5c361398f0
commit bde8dc028f
4 changed files with 990 additions and 54 deletions

View File

@ -1,47 +0,0 @@
<!DOCTYPE html>
<html dir="ltr">
<head>
<meta charset="UTF-8">
<title>Ionic</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<script src="/dist/ionic.js"></script>
</head>
<body>
<ion-app>
<ion-page>
<button-bar></button-bar>
<script>
class ButtonBar extends HTMLElement {
constructor() {
super();
const shadowRoot = this.attachShadow({ mode: 'open' });
shadowRoot.innerHTML = `
<style>
:host {
};
</style>
<ion-toolbar>
<ion-button>News</ion-button>
</ion-toolbar>
`;
}
}
customElements.define('button-bar', ButtonBar)
</script>
</ion-content>
</ion-page>
</ion-app>
</body>
</html>