[ Launch: donut example ] 8654015 by gerred
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
"jquery": "jQuery", | |
"ng-grid": { | |
"depends": [ | |
"angular", | |
"jquery:jQuery" | |
] | |
}, |
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
module.exports = function($scope, redacted, redacted) { | |
$scope.redacted = redacted.data | |
$scope.redacted = redacted.data | |
} |
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
module.exports = angular.module('main', ['ui.router']) | |
.config(function ($stateProvider, $urlRouterProvider) { | |
$urlRouterProvider.otherwise('/') | |
$stateProvider | |
.state('root', { | |
url: '/', | |
templateUrl: 'views/main/home.html', | |
controller: 'HomeCtrl', | |
resolve: { |
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
'use strict'; | |
var angular = require('angular') | |
require('ng-grid') | |
require('angular-bootstrap') | |
require('bootstrap-tpl') | |
require('ui-router') | |
require('restangular') | |
angular.module('app', [ |
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
describe('sanity', function() { | |
describe('index', function() { | |
browser.get('/#/') | |
var title = element(by.tagName('h1')) | |
expect(title.getText()).toEqual("Sanity Test Check") | |
}) | |
}) |
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
<row> | |
<select class="form-control" ng-model="currentDay" ng-options="d for d in dateOptions" ng-change="refreshAlarms()"></select> | |
</row> |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDqStGVPDHXIuiG1tv2SCMHOeg/ka1df3AXyoucsudmTxS7AwftXv1d1NBeYE+2uyTZQ6dBf4hCEiKLjo5OW+8sY8uR/4XRraShUY0uw9FfJVmh4PlUSiyqC2baypLCOgv4GuMVyehNz+B+dcCZzwShEgq/lkXYcSHkh82yoPxlStZmZOurCYZNuBa5yWuJ+NKmoDYl8+vxds1NI9gsdyu6RhJuG3UFEaf1YQ/Tc00DvJ7qfSc0PYynYEScdr1Bs6kJtTMVTeqUcC5iOq3OFPcJ4rj6+cXsgzdlyG6EYePjsoc/V0jxVqoMpg7+JkFzeGdCQ4N+WCLpniKROGWZHK19 [email protected] |
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
fs = require 'fs' | |
noflo = require 'noflo' | |
split = require 'split' | |
class ReadFileStream extends noflo.Component | |
constructor: -> | |
@inPorts = | |
in: new noflo.Port() | |
@outPorts = | |
out: new noflo.Port() |
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
'clicks.json' -> IN Read(ReadFile) OUT -> IN Split(SplitStr) | |
Split() OUT -> IN Count(Counter) COUNT -> IN Display(Output) | |
Read() ERROR -> IN Display() | |
/Users/gerred/dev/clicks_parser_noflo/node_modules/noflo/lib/Port.js:112 | |
throw new Error("" + (this.getId()) + ": No connection available"); | |
^ | |
Error: Count OUT: No connection available | |
at Port.disconnect (/Users/gerred/dev/clicks_parser_noflo/node_modules/noflo/lib/Port.js:112:15) | |
at Port.<anonymous> (/Users/gerred/dev/clicks_parser_noflo/node_modules/noflo-packets/components/Counter.coffee:37:28) |