Skip to content

Commit e8fe073

Browse files
committed
chore(Site): Add thanks to SL and BStack
1 parent 4b149c9 commit e8fe073

File tree

1 file changed

+22
-10
lines changed

1 file changed

+22
-10
lines changed

misc/site/index.html

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ <h1 class="text-center">Angular UI Grid</h1>
6060
<i class="fa fa-github fa-fw"></i>
6161
Code on Github
6262
</a>
63-
63+
6464
<a class="btn btn-danger btn-large" href="https://github.com/angular-ui/ui-grid.info/tree/gh-pages/release" title="Download <%= version %>">
6565
<i class="fa fa-download fa-fw"></i>
6666
<!-- Download <small>( <%= stable_version %> / <%= version %> )</small> --> <!-- TODO(c0bra): note: not showing stable version till 3.0.0 is released -->
6767

6868
Download <small>( <%= version %> )</small>
6969
</a>
70-
70+
7171
<a class="btn btn-success btn-large" href="http://<%= site %>/docs/#/tutorial" title="Tutorial">
7272
<i class="fa fa-book fa-fw"></i>
7373
Tutorial
@@ -76,8 +76,8 @@ <h1 class="text-center">Angular UI Grid</h1>
7676
</div>
7777
</div>
7878
</div>
79-
80-
<div class="container-fluid">
79+
80+
<div class="container-fluid">
8181
<div class="row">
8282
<div class="col-xs-12 col-sm-6 col-lg-3">
8383
<div class="feature">
@@ -122,14 +122,26 @@ <h4 class="feature-heading">Advanced Features</h4>
122122
</div>
123123
<h4 class="feature-heading">Basic Example</h4>
124124
<div class="grid" ui-grid="gridOptionsSimple"></div>
125-
125+
126126
<h4 class="feature-heading">Complex Example</h4>
127127
<div class="grid" ui-grid="gridOptionsComplex" ui-grid-edit ui-grid-resize-columns></div>
128128
</div>
129129
</div>
130130
</div>
131131
</div>
132-
132+
133+
<br>
134+
<br>
135+
<br>
136+
137+
<div class="container-fluid">
138+
<div class="row text-center">
139+
<small class="muted">Special thanks to <a href="http://saucelabs.com">Sauce Labs</a> and <a href="http://browserstack.com">BrowserStack</a> for providing their testing platforms to open source projects for free.</small>
140+
</div>
141+
</div>
142+
143+
<br>
144+
<br>
133145

134146
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
135147
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
@@ -243,21 +255,21 @@ <h4 class="feature-heading">Complex Example</h4>
243255
}
244256
]
245257
};
246-
258+
247259
$rootScope.gridOptionsComplex = {
248260
enableFiltering: true,
249261
showGridFooter: true,
250262
showColumnFooter: true,
251263
columnDefs: [
252264
{ name: 'name', aggregationType: uiGridConstants.aggregationTypes.count, width: 150 },
253-
{ name: 'gender', filter: { term: 'male' }, width: 150, enableCellEdit: false,
265+
{ name: 'gender', filter: { term: 'male' }, width: 150, enableCellEdit: false,
254266
cellClass: function(grid, row, col, rowRenderIndex, colRenderIndex) {
255267
if (grid.getCellValue(row,col) === 'male') {
256268
return 'blue';
257269
} else if (grid.getCellValue(row,col) === 'female') {
258270
return 'pink';
259271
}
260-
}
272+
}
261273
},
262274
{ name: 'age', aggregationType: uiGridConstants.aggregationTypes.avg, width: 100 },
263275
{ name: 'company', enableFiltering: false, width: 200 }
@@ -408,7 +420,7 @@ <h4 class="feature-heading">Complex Example</h4>
408420
"age": 31
409421
}
410422
]
411-
};
423+
};
412424
});
413425
</script>
414426
</body>

0 commit comments

Comments
 (0)