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> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, user-scalable=no" /> | |
<title>SalesGig</title> | |
<link href="https://uploads-ssl.webflow.com/5cdbea66ded4a014dc7dd785/5cfa2a1075549c3b783f3c71_fav32.png" rel="shortcut icon" type="image/x-icon"> | |
<link href="https://uploads-ssl.webflow.com/5cdbea66ded4a014dc7dd785/5cfa2a173acd1b03cd7c2b90_fav256.png" rel="apple-touch-icon"> | |
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap" rel="stylesheet"> | |
<style> |
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 { async, ComponentFixture, TestBed } from '@angular/core/testing'; | |
import { DownloadPdfReportComponent } from './download-pdf-report.component'; | |
import { RouterTestingModule } from '@angular/router/testing'; | |
import { ActivatedRoute, Router } from '@angular/router'; | |
import { NO_ERRORS_SCHEMA } from '@angular/core'; | |
import { Observable } from 'rxjs/Observable'; | |
import { Subject } from 'rxjs/Subject'; | |
import 'rxjs/add/observable/of'; | |
import { MedianService } from '@cb/tdp-core/services'; |
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
/** | |
* Each view are defined as state. | |
* Initial there are written state for all view in theme. | |
*/ | |
function config($stateProvider, $urlRouterProvider, $ocLazyLoadProvider, IdleProvider, KeepaliveProvider) { | |
// Configure Idle settings | |
IdleProvider.idle(5); // in seconds | |
IdleProvider.timeout(120); // in seconds |
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
**/.DS_Store | |
.idea | |
*.ignore | |
coverage | |
node_modules | |
bower_components | |
public/logs | |
public/index.html | |
public/login.html | |
public/admin/admin.html |
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
/bower_components | |
/node_modules | |
/docs | |
/tr_config: | |
/tr_models: | |
/tr_routes: | |
/tr_tests: | |
/tr_utils: | |
migrations.js | |
/public: |
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
b/public/app/denver/js/controllers.js | |
function navbarController($scope, $location) { | |
{href : '#/restaurants', name: 'Restaurants'}, | |
{href : '#/sessions', name: 'Sessions'}, | |
{href : '#/plans', name: 'Plans'}, | |
+ {href : '#/settings', name: 'Settings'}, | |
{href : '/logout', name: 'Log Out'} | |
]; |
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
/** | |
* Created by maxie on 8/22/14. | |
*/ | |
var app = require('http').createServer(handler); | |
var port = process.env.PORT; | |
app.listen(port); | |
var io = require('socket.io').listen(app); | |
var redis = require('redis'); | |
var fs = require('fs'); |
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 http = require('http'); | |
var querystring = require('querystring'); | |
var post_data = querystring.stringify({ | |
username : 'demo', | |
password: 'demo' | |
}); | |
var options = { | |
hostname: 'tableready.herokuapp.com', |
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 http = require('http'); | |
var querystring = require('querystring'); | |
var post_data = querystring.stringify({ | |
username : 'admin', | |
password: '123123' | |
}); | |
var options = { | |
hostname: 'localhost', |
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 http = require('http'); | |
var querystring = require('querystring'); | |
// write data to request body | |
var post_data = querystring.stringify({ | |
username : 'admin', | |
password: '123123' | |
}); | |
var options = { |
NewerOlder