Skip to content

Commit

Permalink
Merge branch 'master' into #633-load-open-orders
Browse files Browse the repository at this point in the history
  • Loading branch information
priecint committed Aug 8, 2016
2 parents 58d1a44 + 72d2f64 commit 95d3662
Show file tree
Hide file tree
Showing 7 changed files with 70,683 additions and 60,109 deletions.
129,781 changes: 70,206 additions & 59,575 deletions azure/2.0.0/build.js

Large diffs are not rendered by default.

996 changes: 466 additions & 530 deletions azure/2.0.0/build.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion azure/2.0.0/splash.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion azure/2.0.0/styles.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions azure/env.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"gethHttpURL": "http://127.0.0.1:8545",
"gethWebsocketsURL": "ws://127.0.0.1:8546",
"autoLogin": true
}
4 changes: 3 additions & 1 deletion azure/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
<meta name="e840127dba35b2939858e9ed30d25cb70b353e25" content="117ae21d29f8732b0bde7381da50aa67b1548bd9" />

<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<style type="text/css">#app,#splash,body,html{width:100%;height:100%}#splash,#splash-text{top:0;left:0;overflow:hidden}#splash{display:block;position:relative;color:#f5f5f5;background:#efefef}#splash-text{display:inline-block;position:absolute;bottom:0;right:0;width:50px;height:50px;margin:auto;color:#fbfbfb;background-image:url(2.0.0/images/augur_logo_200_white.png);background-repeat:no-repeat;background-position:center center;background-size:contain;font-family:Impact,"Arial Black","Avant Garde",Charcoal,sans-serif;font-size:20vh;font-weight:700;text-shadow:0 0 50px #e9e9e9;text-align:center;animation-name:splash-anim;animation-duration:10s;animation-iteration-count:infinite;animation-timing-function:cubic-bezier(.11,.63,.25,.89);animation-direction:alternate}@keyframes splash-anim{0%{transform:scale(1) rotate(0)}100%{transform:scale(4) rotate(3deg)}}</style>
<style type="text/css">#app,#splash,body,html{width:100%;height:100%}#splash,#splash-text{top:0;left:0;overflow:hidden}#splash{display:block;position:relative;color:#f5f5f5;background:#efefef}#splash-text{display:inline-block;position:absolute;bottom:0;right:0;width:50px;height:50px;margin:auto;color:#fbfbfb;background-image:url(2.0.0/images/augur_logo_200_white.png);background-repeat:no-repeat;background-position:center center;background-size:contain;font-family:Impact,"Arial Black","Avant Garde",Charcoal,sans-serif;font-size:20vh;font-weight:700;text-shadow:0 0 50px #e9e9e9;text-align:center;animation-name:splash-anim;animation-duration:10s;animation-iteration-count:infinite;animation-timing-function:cubic-bezier(.11,.63,.25,.89);animation-direction:alternate}@keyframes splash-anim{0%{transform:scale(1) rotate(0)}100%{transform:scale(4) rotate(3deg)}}
</style>
<link rel="stylesheet" type="text/css" href="/2.0.0/styles.css">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Roboto:700,900,400">

Expand All @@ -23,3 +24,4 @@
</head>
<body><div id="app"><div id="splash"><span id="splash-text"></span></div></div></body>
</html>

2 changes: 1 addition & 1 deletion src/modules/app/actions/listen-to-updates.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function listenToUpdates() {

// new market, result = { blockNumber, marketId }
(errNone, result) => {
if (!result.marketId) {
if (!result || !result.marketId) {
return;
}
dispatch(loadMarketsInfo(result.marketId));
Expand Down

0 comments on commit 95d3662

Please sign in to comment.