|
5 | 5 | <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> |
6 | 6 |
|
7 | 7 | <title>Tabs or Spaces</title> |
8 | | - <meta name="description" content="Top Github repos have been analysed to understand which whitespace types are most common in different programming languages"> |
| 8 | + <meta name="description" content="Top GitHub repos were analysed to understand which whitespace types are most common in different programming languages"> |
9 | 9 | <meta name="author" content="Uku Pattak"> |
10 | 10 |
|
11 | 11 | <link rel="shortcut icon" href="web/fav.png" type="image/png"> |
|
18 | 18 | <body> |
19 | 19 | <header> |
20 | 20 | <div class="pure-g"> |
21 | | - <div class="pure-u-1-3"> |
22 | | - <h1 class="tabs">\t</h1> |
23 | | - </div> |
24 | | - <div class="pure-u-1-3"></div> |
25 | | - <div class="pure-u-1-3"> |
26 | | - <h1 class="spaces">\s</h1> |
27 | | - </div> |
28 | | - |
29 | | - <div class="pure-u-1-3 long-title"> |
30 | | - <h2>Tabs</h2> |
31 | | - </div> |
32 | | - <div class="pure-u-1-3 vs"> |
33 | | - <h2>or</h2> |
34 | | - </div> |
35 | | - <div class="pure-u-1-3 long-title"> |
36 | | - <h2>Spaces</h2> |
37 | | - </div> |
| 21 | + <h1> |
| 22 | + <span class="tabs">Tabs</span> or <span class="spaces">Spaces</span> |
| 23 | + </h1> |
38 | 24 | </div> |
39 | | - <h3>The Top Starred repositories in Github have been analysed to understand which are the most common whitespace types in different programming languages.</h3> |
| 25 | + <h3>The Top Starred repositories on <a href="https://github.com">GitHub</a> were analysed in 2017 to understand which are the most common whitespace types in different programming languages.</h3> |
40 | 26 | </header> |
41 | 27 |
|
42 | 28 | <main> |
43 | | - <section id="charts"> |
44 | | - <div class="loading" v-bind:class="{ 'hide': languages}"> |
45 | | - <i class="fa fa-refresh fa-spin"></i> |
46 | | - </div> |
47 | | - <div class="chart" v-for="language in languages | orderBy 'name'" v-bind:class="{ 'show': languages}"> |
48 | | - <h2> |
49 | | - <a href="https://github.com/search?l={{ encodeURIComponent(language.name) }}&q=stars%3A%3E1&s=stars&type=Repositories" target="_blank"> |
50 | | - {{ language.name }} |
51 | | - </a> |
52 | | - </h2> |
53 | | - <h3> |
54 | | - Analysed <span class="amount">{{ language.analysedReposAmount }}</span> repositories |
55 | | - </h3> |
56 | | - |
57 | | - <canvas id="{{ language.name }}Chart" width="300" height="300"></canvas> |
58 | | - </div> |
59 | | - </section> |
60 | | - |
61 | | - <section class="legend"> |
62 | | - <div class="tab-1"> |
63 | | - <i class="fa fa-circle"></i> Tabs |
64 | | - </div> |
65 | | - <div class="spaces-2"> |
66 | | - <i class="fa fa-circle"></i> 2 Spaces |
67 | | - </div> |
68 | | - <div class="spaces-3"> |
69 | | - <i class="fa fa-circle"></i> 3 Spaces |
70 | | - </div> |
71 | | - <div class="spaces-4"> |
72 | | - <i class="fa fa-circle"></i> 4 Spaces |
73 | | - </div> |
74 | | - <div class="spaces-8"> |
75 | | - <i class="fa fa-circle"></i> 8 Spaces |
76 | | - </div> |
77 | | - <iframe src="https://ghbtns.com/github-btn.html?user=ukupat&repo=tabs-or-spaces&type=star&count=true&" frameborder="0" scrolling="0" width="100px" height="30px"></iframe> |
78 | | - </section> |
| 29 | + <div class="chart"> |
| 30 | + <canvas id="Chart" height="1100"></canvas> |
| 31 | + </div> |
79 | 32 | </main> |
80 | 33 |
|
81 | 34 | <footer> |
82 | 35 | <iframe src="https://ghbtns.com/github-btn.html?user=ukupat&repo=tabs-or-spaces&type=star&count=true&size=large" frameborder="0" scrolling="0" width="140px" height="30px"></iframe> |
83 | | - <a href="https://github.com/ukupat/tabs-or-spaces/issues/new" target="_blank">Require an analysis for a new language</a> |
| 36 | + <a href="https://github.com/ukupat/tabs-or-spaces/issues/new" target="_blank">Request an analysis for a new language</a> |
84 | 37 | <a href="https://github.com/ukupat" target="_blank">Check out the author</a> |
85 | | - <a href="https://github.com/ukupat/tabs-or-spaces" target="_blank">Review the source code</a> |
| 38 | + <a href="https://github.com/ukupat/tabs-or-spaces" target="_blank">View the source code</a> |
86 | 39 | </footer> |
87 | 40 |
|
88 | | - <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.11/vue.min.js"></script> |
89 | | - <script src="https://cdnjs.cloudflare.com/ajax/libs/vue-resource/0.1.17/vue-resource.min.js"></script> |
90 | | - <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js"></script> |
| 41 | + <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> |
91 | 42 | <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.min.js"></script> |
92 | 43 | <script src="web/index.js"></script> |
93 | 44 |
|
|
0 commit comments