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
<form (ngSubmit)="save()" #projectForm="ngForm"> | |
<div> | |
<input [(ngModel)]="project.name" | |
required | |
name="name" | |
#name="ngModel"> | |
</div> | |
<div [hidden]="name.valid || name.pristine" class="alert"> | |
Name is required | |
</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
const chokidar = require('chokidar'); | |
const fs = require('fs'); | |
const _ = require('lodash'); | |
const uuid = require('node-uuid'); | |
const messageTypes = require('./message.types.js'); | |
const basePath = '/ProgramData/XDMessagingv4/'; | |
const screensaverPath = '/FitnessOnDemand/Resources/Images/Screensaver' | |
var heartbeatTimer; |
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
module insite_admin { | |
"use strict"; | |
declare var Tether; | |
export interface IPopupChannel { | |
togglePopup(element: HTMLElement): void; | |
onTogglePopup(scope: ng.IScope, handler: Function): void; | |
} | |
export class PopupChannel implements IPopupChannel { |
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
<link rel="import" href="../polymer/polymer.html"> | |
<script src="../d3/d3.min.js"></script> | |
<dom-module id="blue-arc-graph"> | |
<style> | |
:host { | |
display: block; | |
} | |
</style> |
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> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> | |
<script src="../../webcomponentsjs/webcomponents-lite.js"></script> | |
<script src="../../web-component-tester/browser.js"></script> | |
<script src="../../test-fixture/test-fixture-mocha.js"></script> |
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> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> | |
<script src="../../webcomponentsjs/webcomponents-lite.js"></script> | |
<script src="../../web-component-tester/browser.js"></script> | |
<script src="../../test-fixture/test-fixture-mocha.js"></script> |