Skip to content

Commit 5243111

Browse files
committed
WIP: fix grunt syntax errors
1 parent 33e93e0 commit 5243111

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

TODO.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
1. Figure out how to run e2e tests on docs (look at angularjs source / protractor?)
33
1. `readableColumnNames` need to be overrideable by i18n.
44
1. Add banners to compiled .css files (grunt-banner?)
5+
1. Add grunt-nuget task to autodeploy builds to nuget
56

67
1. [DONE] Add --browsers option for testing on saucelabs with specific browser(s)
78
1. [DONE] Make karmangular run in `watch` mode and in singlerun too.

lib/grunt/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ var util = module.exports = {
186186
email: 'nggridteam@gmail.com'
187187
});
188188

189-
grunt.config('gh-pages.gh-pages.options.repo', 'https://' + process.ENV.GITHUB_NAME + ':' + process.env.GITHUB_PASS + '@github.com/angular-ui/ui-grid.info.git');
189+
grunt.config('gh-pages.gh-pages.options.repo', 'https://' + process.env.GITHUB_NAME + ':' + process.env.GITHUB_PASS + '@github.com/angular-ui/ui-grid.info.git');
190190
}
191191
},
192192

misc/site/index.html

+38-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ <h2>Angular UI Grid</h2>
6161

6262
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
6363

64-
<a class="btn btn-danger btn-large" href="https://github.com/angular-ui/ui-grid.info/tree/gh-pages" title="Download <%= version %>">
64+
<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>
6767
</a>
@@ -76,6 +76,43 @@ <h2>Angular UI Grid</h2>
7676
</p>
7777
</div>
7878
</div>
79+
80+
<div class="container">
81+
<div class="row">
82+
<div class="span4">
83+
<div class="text-center">
84+
<i class="fa fa-4x fa-wrench"></i>
85+
</div>
86+
<h4 class="text-center">Configurable</h4>
87+
<ul>
88+
<li>Customizeable templates</li>
89+
<li>Change look and feel with CSS</li>
90+
<li>Drop-in plugin system</li>
91+
</ul>
92+
</div>
93+
94+
<div class="span4">
95+
<div class="text-center">
96+
<i class="fa fa-4x fa-gear"></i>
97+
</div>
98+
<h4>Advanced features</h4>
99+
<ul>
100+
<li>Virtualization</li>
101+
<li>Column pinning</li>
102+
<li>Grouping</li>
103+
</ul>
104+
</div>
105+
106+
<div class="span4 text-center">
107+
<div class="text-center">
108+
<i class="fa fa-4x fa-camera"></i>
109+
</div>
110+
<h4 class="">Cute Kittens</h4>
111+
<img class="img-circle" src="http://placekitten.com/180/180" />
112+
</div>
113+
</div>
114+
</div>
115+
79116
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
80117
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
81118
</body>

0 commit comments

Comments
 (0)