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> | |
<link rel="stylesheet" href="style.css"> | |
<div class="place-holder" id="splash-banner"></div> | |
<div id="under-splash-banner"> | |
<div class="place-holder" id="news-feed"></div> | |
<div id="resizable-panels"> | |
<div id="patient-info"> | |
<div class="place-holder" id="order-history"></div> | |
<div class="place-holder" id="health-status"></div> | |
<div class="place-holder" id="to-do"></div> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>EDIS</title> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<div class="place-holder" id="splash-banner"></div> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>EDIS</title> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<div class="place-holder" id="splash-banner"></div> |
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
System.config({ | |
baseURL: "/", | |
defaultJSExtensions: true, | |
transpiler: "typescript", | |
typescriptOptions: { | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true | |
}, | |
paths: { | |
"github:*": "jspm_packages/github/*", |
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> | |
Hello World | |
</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> | |
<style> | |
html { | |
box-sizing:border-box; | |
} | |
*, *::before, *::after { | |
box-sizing: inherit; | |
} | |
body { |
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='./list.html'></require> | |
<list title="${title}" list="${arr}"></list> | |
</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
import {autoinject} from 'aurelia-dependency-injection'; | |
import {Project, ProjectItem, CLIOptions, UI} from 'aurelia-cli'; | |
import * as path from 'path'; | |
@autoinject() | |
export default class StyledComponentGenerator { | |
constructor(private project: Project, private options: CLIOptions, private ui: UI) { } | |
execute() { | |
return this.ui |
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
{ | |
"name": "All", | |
"children": [ | |
{ | |
"name": "MGunCore", | |
"children": [ | |
{ | |
"name": "MGun", | |
"children": [ | |
{ |
This file has been truncated, but you can view the full file.
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
{ | |
"name": "All", | |
"children": [ | |
{ | |
"name": "AllVehicles", | |
"children": [ | |
{ | |
"name": "Land", | |
"children": [ | |
{ |
OlderNewer