Merge branch 'master' of github.com:kaihendry/greptweet

This commit is contained in:
Kai Hendry
2014-04-06 07:58:50 +00:00
3 changed files with 4 additions and 30 deletions

View File

@@ -8,25 +8,6 @@
<meta name="description" content="Download and search your tweets - no password login required!"> <meta name="description" content="Download and search your tweets - no password login required!">
<link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="/bootstrap/css/bootstrap-theme.min.css"> <link rel="stylesheet" href="/bootstrap/css/bootstrap-theme.min.css">
<script>
function getCookie( oName ) {
var splitcookie = document.cookie.split( "; " ), x, cookiepair;
for( x = 0; x < splitcookie.length; x = x + 1 ) {
cookiepair = splitcookie[x].split( "=" );
if( cookiepair[0] === encodeURIComponent( oName ) ) {
if( cookiepair[1] ) {
return decodeURIComponent( cookiepair[1] );
} else {
return '';
}
}
}
return null;
}
user = getCookie("u");
if (user) { window.location.replace("/u/" + user); }
</script>
</head> </head>

10
jquery.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -79,11 +79,6 @@ $(document).ready(function() {
$("#source").html(footer); $("#source").html(footer);
document.title = NAME; document.title = NAME;
document.cookie = 'u=' + NAME + '; expires=Thu, 2 Aug 2021 20:47:11 UTC; path=/';
$("#home").click(function() {
document.cookie = 'u=' + NAME + '; expires=Thu, 2 Aug 2001 20:47:11 UTC; path=/';
});
}); });
$(window).bind('hashchange', function() { $(window).bind('hashchange', function() {