mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 07:45:01 -04:00
updated to latest
This commit is contained in:
parent
0e3b4635a1
commit
a2333825a6
@ -1,5 +1,4 @@
|
|||||||
article {
|
article {
|
||||||
overflow: hidden;
|
|
||||||
padding-top: 1em;
|
padding-top: 1em;
|
||||||
a { @extend .force-wrap; }
|
a { @extend .force-wrap; }
|
||||||
header {
|
header {
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
padding-right: 1em;
|
padding-right: 1em;
|
||||||
}
|
}
|
||||||
a[href*=status]{
|
a[href*=status]:first-child {
|
||||||
color: $twitter-status-link;
|
color: $twitter-status-link;
|
||||||
float: right;
|
float: right;
|
||||||
padding: 0 0 .1em 1em;
|
padding: 0 0 .1em 1em;
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
</script>
|
</script>
|
||||||
<script src="{{ root_url }}/javascripts/twitter.js" type="text/javascript"> </script>
|
<script src="{{ root_url }}/javascripts/twitter.js" type="text/javascript"> </script>
|
||||||
{% if site.twitter_follow_button %}
|
{% if site.twitter_follow_button %}
|
||||||
<a href="http://twitter.com/{{ site.twitter_user }}" class="twitter-follow-button" data-width="208px" data-show-count="{{ site.twitter_show_follower_count }}">Follow @{{ site.twitter_user }}</a>
|
<a href="http://twitter.com/{{ site.twitter_user }}" class="twitter-follow-button" data-show-count="{{ site.twitter_show_follower_count }}">Follow @{{ site.twitter_user }}</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<p>Follow <a href="http://twitter.com/{{site.twitter_user}}">@{{ site.twitter_user }}</a></p>
|
<p>Follow <a href="http://twitter.com/{{site.twitter_user}}">@{{ site.twitter_user }}</a></p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -3,7 +3,10 @@ function getNav() {
|
|||||||
mobileNav.children('select').append('<option value="">Navigate…</option>');
|
mobileNav.children('select').append('<option value="">Navigate…</option>');
|
||||||
$('ul[role=main-navigation]').addClass('main-navigation');
|
$('ul[role=main-navigation]').addClass('main-navigation');
|
||||||
$('ul.main-navigation a').each(function(link) {
|
$('ul.main-navigation a').each(function(link) {
|
||||||
mobileNav.children('select').append('<option value="'+link.href+'">• '+link.text+'</option>');
|
mobileNav.children('select').append('<option value="'+link.href+'">» '+link.text+'</option>');
|
||||||
|
});
|
||||||
|
$('ul.subscription a').each(function(link) {
|
||||||
|
mobileNav.children('select').append('<option value="'+link.href+'">» '+link.text+'</option>');
|
||||||
});
|
});
|
||||||
mobileNav.children('select').bind('change', function(event) {
|
mobileNav.children('select').bind('change', function(event) {
|
||||||
if (event.target.value) { window.location.href = event.target.value; }
|
if (event.target.value) { window.location.href = event.target.value; }
|
||||||
|
Loading…
Reference in New Issue
Block a user