mirror of
https://github.com/thewesker/greptweet.git
synced 2025-12-21 20:41:06 -05:00
Closes #21
This commit is contained in:
Submodule bootstrap updated: b5af762ef5...9376a7c221
@@ -5,7 +5,6 @@
|
|||||||
<title>Grepping twitter backup</title>
|
<title>Grepping twitter backup</title>
|
||||||
<meta content="width=device-width, initial-scale=1,maximum-scale=1.0;" name=viewport>
|
<meta content="width=device-width, initial-scale=1,maximum-scale=1.0;" name=viewport>
|
||||||
<link rel="icon" href="/favicon.ico">
|
<link rel="icon" href="/favicon.ico">
|
||||||
<link rel="apple-touch-icon" href="http://a0.twimg.com/profile_images/1206037111/greptweet.png">
|
|
||||||
<link rel="stylesheet" href="/bootstrap/docs/assets/css/bootstrap.css">
|
<link rel="stylesheet" href="/bootstrap/docs/assets/css/bootstrap.css">
|
||||||
<link rel="stylesheet" type="text/css" href="/style.css">
|
<link rel="stylesheet" type="text/css" href="/style.css">
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
5
main.js
5
main.js
@@ -53,6 +53,11 @@ $(document).ready(function() {
|
|||||||
NAME = window.location.pathname.split('/')[2];
|
NAME = window.location.pathname.split('/')[2];
|
||||||
$("#name").html(NAME);
|
$("#name").html(NAME);
|
||||||
|
|
||||||
|
appletouchicon = document.createElement('link');
|
||||||
|
appletouchicon.setAttribute("rel", "apple-touch-icon");
|
||||||
|
appletouchicon.setAttribute("href", "https://api.twitter.com/1/users/profile_image?screen_name=" + NAME + "&size=bigger");
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(appletouchicon);
|
||||||
|
|
||||||
$("input[type=search]").change(function() {
|
$("input[type=search]").change(function() {
|
||||||
query = this.value;
|
query = this.value;
|
||||||
window.location.hash = query;
|
window.location.hash = query;
|
||||||
|
|||||||
Reference in New Issue
Block a user