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
| class Conversation | |
| { | |
| public integer PromptID; | |
| public string Prompt; | |
| private integer InquirerID; | |
| public array (string) Challenges; | |
| public array (string) Questions; | |
| public array (string) Callout; | |
| public string Cavalry; | |
| public integer Complexity; |
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
| <!DOCTYPE html> | |
| <!--[if lt IE 7]> | |
| <html | |
| class="no-js lt-ie9 lt-ie8 lt-ie7 no-responsive" | |
| lang="en" | |
| dir="ltr" | |
| prefix="og: http://ogp.me/ns#" | |
| > | |
| <![endif]--> | |
| <!--[if IE 7]> |
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
| > /* HHS CSS */ | |
| > body, html { | |
| > height: 100%; | |
| > width: 100%; | |
| > } | |
| > | |
| > body, h1, h2, h3, h4, h5, h6 { | |
| > font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| > font-weight: 700; | |
| > } |
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
| var spawn = require('child_process').spawn; | |
| var wrench = require('wrench'); | |
| var sailsBin = './node_modules/sails/bin/sails.js'; | |
| var _kill = function(sailsServer, cb) { | |
| sailsServer.on('exit', function(code, signal){ | |
| cb(); | |
| }); | |
| sailsServer.kill('SIGINT'); | |
| }; |