Commit 335424ff authored by Sindre Sorhus's avatar Sindre Sorhus

Minor site tweaks

parent 4d837fb9
......@@ -132,12 +132,12 @@ had it been designed for web apps">AngularJS</a>
<h2>Getting Involved</h2>
<p>Is there a bug we haven't fixed or an MV* framework you feel would benefit from being included in TodoMVC?</p>
<p>If so, feel free to fork the repo and submit a pull request &mdash; we'll be happy to review it for inclusion.</p><p> Make sure you use the <a href="https://github.com/addyosmani/todomvc/tree/master/template">template</a> as a starting point and read the application <a href="https://github.com/addyosmani/todomvc/wiki/Todo-Application-Specification">specifications</a> to make sure your app meets the guidelines for our next major release.</p>
<p><a class="btn" href="https://github.com/addyosmani/todomvc/pull/new/master">Submit Pull Request&raquo;</a></p>
<p><a class="btn" href="https://github.com/addyosmani/todomvc/pull/new/master">Submit Pull Request &raquo;</a></p>
</div>
</div>
<hr>
<footer>
<p>© TodoMVC. Brought to you by <a href="http://github.com/addyosmani">Addy Osmani</a> (lead), <a href="https://github.com/boushley">Aaron Boushley</a> and <a href="https://github.com/sindresorhus">Sindre Sorhus</a>.</p>
<p>© TodoMVC. Brought to you by <a href="https://github.com/addyosmani">Addy Osmani</a> (lead), <a href="https://github.com/boushley">Aaron Boushley</a> and <a href="https://github.com/sindresorhus">Sindre Sorhus</a>.</p>
<p id="contributor-list">Big thanks to our magnificent contributors: <span></span></p>
</footer>
</div>
......
......@@ -98,7 +98,7 @@ h2 {
#contributor-list {
display: none;
font-size: 12px;
font-size: 11px;
}
@media (max-width: 480px) {
......
......@@ -5,9 +5,9 @@
delay: 200,
placement: 'in right',
title: function() {
return $(this).text() + '<a href="' + $(this).data('source') + '">Go to site</a>';
return $( this ).text() + '<a href="' + $( this ).data('source') + '">Go to site</a>';
}
}).on('click', '.popover', function(e) {
}).on('click', '.popover', function( e ) {
// Prevent click on the popover, but allow links inside
if ( e.target.nodeName.toLowerCase() !== 'a' ) {
e.preventDefault();
......@@ -21,7 +21,7 @@
$.getJSON('https://github.com/api/v2/json/repos/show/addyosmani/todomvc/contributors?callback=?', function( res ) {
var data = res.contributors;
// Add some previous contributors not on the GitHub list
[].push.apply(data, [{
[].push.apply( data, [{
login: 'tomdale',
name: 'Tom Dale'
}, {
......@@ -38,4 +38,4 @@
$('#contributor-list').show().children('span').html( ret.join(', ') );
});
})();
})();
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment