Skip to content

Commit e066420

Browse files
committed
Merge pull request #129 from cloudspace/visual_fixes
fix issues noticed on prod deploy
2 parents fbd0a07 + b4ed81f commit e066420

File tree

2 files changed

+43
-45
lines changed

2 files changed

+43
-45
lines changed

app/views/about.tpl.html

Lines changed: 41 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -20,49 +20,47 @@ <h2><a href="http://cloudspace.com/" class="cloudspace-logo">cloudspace</a></h2>
2020
</div>
2121
</div>
2222
</div>
23-
<div ng-show="showPage=='about'" class="container">
23+
<div ng-show="showPage=='about'">
2424
<div class="container" id="pop-quiz">
25-
<div class="row">
26-
<h3>Time for a Pop Quiz, Why did we (Cloudspace) build the Crunchinator</h3>
27-
<ul>
28-
<li pop-open>
29-
<div>
30-
<span class="triangle"></span>
31-
<span>We love Crunchbase but needed a better way to slice &amp; dice the data for in-house research</span>
32-
</div>
33-
</li>
34-
<li pop-open>
35-
<div>
36-
<span class="triangle"></span>
37-
<span>We thought others would find it useful, so we made the tool public and the beautiful code open source</span>
38-
</div>
39-
</li>
40-
<li pop-open>
41-
<div>
42-
<span class="triangle"></span>
43-
<span>We wanted a sexy D3, Angular.js, and Cross Filter demo for big/fast data visualization projects</span>
44-
</div>
45-
</li>
46-
<li pop-open>
47-
<div>
48-
<span class="triangle"></span>
49-
<span>We needed to refine our split-stack development: backend engineering (AWS tuned Rails API) and our new UX group (visualizations and user experience)</span>
50-
</div>
51-
</li>
52-
<li pop-open>
53-
<div>
54-
<span class="triangle"></span>
55-
<span>We wanted to show what we could do for your businesses.</span>
56-
</div>
57-
</li>
58-
<li pop-open>
59-
<div>
60-
<span class="triangle"></span>
61-
<span>All of the above, of course</span>
62-
</div>
63-
</li>
64-
</ul>
65-
</div>
25+
<h3>Time for a Pop Quiz, Why did we (Cloudspace) build the Crunchinator</h3>
26+
<ul>
27+
<li pop-open>
28+
<div>
29+
<span class="triangle"></span>
30+
<span>We love Crunchbase but needed a better way to slice &amp; dice the data for in-house research</span>
31+
</div>
32+
</li>
33+
<li pop-open>
34+
<div>
35+
<span class="triangle"></span>
36+
<span>We thought others would find it useful, so we made the tool public and the beautiful code open source</span>
37+
</div>
38+
</li>
39+
<li pop-open>
40+
<div>
41+
<span class="triangle"></span>
42+
<span>We wanted a sexy D3, Angular.js, and Cross Filter demo for big/fast data visualization projects</span>
43+
</div>
44+
</li>
45+
<li pop-open>
46+
<div>
47+
<span class="triangle"></span>
48+
<span>We needed to refine our split-stack development: backend engineering (AWS tuned Rails API) and our new UX group (visualizations and user experience)</span>
49+
</div>
50+
</li>
51+
<li pop-open>
52+
<div>
53+
<span class="triangle"></span>
54+
<span>We wanted to show what we could do for your businesses.</span>
55+
</div>
56+
</li>
57+
<li pop-open>
58+
<div>
59+
<span class="triangle"></span>
60+
<span>All of the above, of course</span>
61+
</div>
62+
</li>
63+
</ul>
6664
</div>
6765

6866
<div id="contact-us">
@@ -71,7 +69,7 @@ <h3>Time for a Pop Quiz, Why did we (Cloudspace) build the Crunchinator</h3>
7169
</div>
7270

7371

74-
<div class="row">
72+
<div class="container">
7573
<p>
7674
<a href='http://cloudspace.com'>Cloudspace</a> is Todd Sampson, Eric Marcoullier and 19 killer engineers, designers and office staff. Todd and Eric founded and ran many successful startups including IGN.com (IPO), BuzzSite (flamed out), MyBlogLog (acquired by Yahoo), Gnip (going strong) and OneTrueFan (acquired by BigDoor). We have also built, invested in and advised a wide array of startups over the last 17 years including Zynga, UberVU, Beatport, Mashery, Storify, Klout, Wetfeet, Rent Advisor, Cloud Logistics, Pocket, Yummly and many, many more.
7775
</p>

app/views/list-select.tpl.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h3>{{chartTitle}}</h3>
2727
<td>
2828
<div class="list-item" ng-click="removeItem(item)">{{ item.display_name || item.name}}</div>
2929
<a ng-if="link" class="permalink" target="_blank" href="http://crunchbase.com/{{ item.investor_type.replace('_', '-') || 'company' }}/{{item.permalink}}">
30-
<span class="pull-right glyphicon glyphicon-new-window"></span>
30+
<i class="pull-right fa fa-external-link"></i>
3131
</a>
3232
<span ng-if="count" class="pull-right model-count">{{ item.model_count }}</span>
3333
</td>
@@ -36,7 +36,7 @@ <h3>{{chartTitle}}</h3>
3636
<td>
3737
<div class="list-item" ng-click="selectItem(item)">{{ item.display_name || item.name}}</div>
3838
<a ng-if="link" class="permalink" target="_blank" href="http://crunchbase.com/{{ item.investor_type.replace('_', '-') || 'company' }}/{{item.permalink}}">
39-
<span class="pull-right glyphicon glyphicon-new-window"></span>
39+
<i class="pull-right fa fa-external-link"></i>
4040
</a>
4141
<span ng-if="count" class="pull-right model-count">{{ item.model_count }}</span>
4242
</td>

0 commit comments

Comments
 (0)