Skip to content

Instantly share code, notes, and snippets.

View hoorayimhelping's full-sized avatar

Bucky Schwarz hoorayimhelping

View GitHub Profile
commit 55b124311c6426425e0c75d0ed7109314d8bc13f
Author: Bucky Schwarz <d.w.schwarz@gmail.com>
Date: Mon Apr 11 21:54:10 2016 -0400
Simple versioning on the readme
diff --git a/README.md b/README.md
index a960b8f..a90ee46 100644
--- a/README.md
+++ b/README.md
commit 53127abe61c94ae35e22ab79b28320ddb351abd5
Author: Bucky Schwarz <d.w.schwarz@gmail.com>
Date: Fri Mar 25 17:59:06 2016 -0400
Common Auth
diff --git a/package.json b/package.json
index 38942af..6714d4c 100644
--- a/package.json
+++ b/package.json
diff --git a/src/js/maps/kerbol_system.js b/src/js/maps/kerbol_system.js
index b3b1a31..b0c9ba9 100644
--- a/src/js/maps/kerbol_system.js
+++ b/src/js/maps/kerbol_system.js
@@ -17,72 +17,89 @@ export default class KerbolSystem {
keostationary_orbit: new Node('Keostationary Orbit'),
mun_transfer: new Node('Mun Transfer'),
+ mun_capture: new Node('Mun Capture'),
low_mun_orbit: new Node('Low Mun Orbit'),
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..5760be5
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,12 @@
+# http://editorconfig.org
+root = true
+
+[*]
diff --git a/src/js/maps/kerbol_system.js b/src/js/maps/kerbol_system.js
index f11c709..e68cfff 100644
--- a/src/js/maps/kerbol_system.js
+++ b/src/js/maps/kerbol_system.js
@@ -1,26 +1,26 @@
-var Node = require('../graph/node');
-var Edge = require('../graph/edge');
+import Node from '../graph/node';
+import Edge from '../graph/edge';
This file has been truncated, but you can view the full file.
diff --git a/.babelrc b/.babelrc
new file mode 100644
index 0000000..ad8d1fe
--- /dev/null
+++ b/.babelrc
@@ -0,0 +1,3 @@
+{
+ "presets" : ["es2015", "react"]
+}
diff --git a/assets/js/app.js b/assets/js/app.js
This file has been truncated, but you can view the full file.
diff --git a/assets/js/app.js b/assets/js/app.js
index f2e0105..0397f3b 100644
--- a/assets/js/app.js
+++ b/assets/js/app.js
@@ -1,18811 +1,99952 @@
-(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
-var React = require('react');
-var ReactDOM = require('react-dom');
-
-ReactDOM.render(
diff --git a/app/sass/_chrome.scss b/app/sass/_chrome.scss
index 0cf2dfd..a767a2d 100644
--- a/app/sass/_chrome.scss
+++ b/app/sass/_chrome.scss
@@ -52,6 +52,10 @@ li {
font-weight: 500;
}
+.parenthetical {
+ font-size: 0.75em;
commit b862b6e009b1c45f78cf45d4a2d8385885f35be9
Author: Bucky Schwarz <d.w.schwarz@gmail.com>
Date: Sun Dec 20 08:18:00 2015 -0500
grunt -> gulp first steps
diff --git a/.eslintrc b/.eslintrc
new file mode 100644
index 0000000..d7a4298
--- /dev/null
This file has been truncated, but you can view the full file.
diff --git a/.gitignore b/.gitignore
index c2658d7..75e63f8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,3 @@
node_modules/
+build/
+*.log
diff --git a/assets/js/app.js b/assets/js/app.js
new file mode 100644