I hereby claim:
- I am blittle on github.
- I am blittle (https://keybase.io/blittle) on keybase.
- I have a public key whose fingerprint is 6CDE 15CB DA14 991D 7FD4 852F 3029 2350 C47D 87EC
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| System.config({ | |
| sofe: { | |
| manifest: { | |
| "someInternalService": "http://somelocation.com/service-1.0.0.js" | |
| }, | |
| manifestUrl: 'https://somelocation.com/available-services.json', | |
| middleware: { | |
| preLocate: (load, locate) => { | |
| }, |
| const Pricing = React.createClass({ | |
| // ... | |
| render() { | |
| // ... | |
| return ( | |
| <div className="pricing" style={{ opacity: purchasing ? 0.25 : '' }}> | |
| {purchaseError ? ( | |
| <div className="purchase-complete"> | |
| <h2 style={{ color: 'hsl(10, 50%, 50%)' }}>Oops!</h2> | |
| <p> |
| const PricingWrap = function ({props}) { | |
| return <div className="pricing" style={{ opacity: purchasing ? 0.25 : '' }}> | |
| {props.children} | |
| </div> | |
| } | |
| const Pricing = React.createClass({ | |
| // ... | |
| render() { | |
| // ... |
| import React from 'react'; | |
| import { Router, Route } from 'react-router'; | |
| import { createStore, combineReducers, applyMiddleware } from 'redux'; | |
| import { Provider } from 'react-redux'; | |
| import thunk from 'redux-thunk'; | |
| import App from './app.component'; | |
| import Tabs from './tabs/tabs.component'; | |
| import Dashboard from 'src/dashboard/dashboard.component'; |
| /** | |
| * Workaround to make defining and retrieving angular modules easier and more intuitive. | |
| */ | |
| (function(angular) { | |
| var origMethod = angular.module; | |
| var alreadyRegistered = {}; | |
| /** |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <title></title> | |
| <meta http-equiv="X-UA-Compatible" content="chrome=1"/> | |
| <link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.3.0/pure-min.css"/> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.3/angular.min.js"></script> | |
| </head> | |
| <body ng-app="myApp"> | |
| <div ng-controller="MyController"> |