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
.current { | |
background: #fafafa; | |
} | |
body.position-fixed > .toolbar { | |
top: 42px ; | |
width: 600px; | |
left: 250px; | |
z-index: 1000; | |
} |
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'; | |
// TODO: Verify if we're getting loaded from multiples location and prevent creating new child processes? | |
var EventEmitter2 = require('eventemitter2').EventEmitter2; | |
var path = require('path'); | |
var spawn = require('child_process').spawn; | |
var events = new EventEmitter2({wildcard: true}); | |
var javaPath = ''; |
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
{ | |
"refId": 0, | |
"name": "hero_ability", | |
"localized_name": "Ability", | |
"cast": { | |
"point": 0, | |
"backswing": 0, | |
"type": ["single"], | |
"range": 0 |
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
angular | |
.module('btg.dashboard') | |
.controller('HeroCardController', HeroCardController); | |
function HeroCardController(addHero, teams, $meteor, draftFactory) { | |
var vm = this; | |
var draftId; | |
angular.extend(vm, { | |
addToTeam: addToTeam, |