github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

jeresig / retweet

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 52
    • 10
  • Source
  • Commits
  • Network (10)
  • Issues (0)
  • Downloads (0)
  • Wiki (1)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Switch Branches (1)
    • master ✓
  • Switch Tags (0)
  • Branch List
Sending Request…

A simple retweet button. — Read more

  Cancel

http://ejohn.org/blog/retweet/

  Cancel
  • HTTP
  • Git Read-Only

This URL has Read+Write access

removing recycle image from link_text in retweet.js 
robertjwhitney (author)
Sat Aug 01 18:07:52 -0700 2009
jeresig (committer)
Mon Oct 05 12:17:49 -0700 2009
commit  2e99731c6b7eb7df7261
tree    c1e2437e1447d09aa72e
parent  229acd7a2c1bc8508e83
retweet / retweet.js retweet.js
Txt 100644 173 lines (137 sloc) 4.811 kb
  • edit
  • raw
  • blame
  • history
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
* Easy Retweet Button
* http://ejohn.org/blog/retweet/
* by John Resig (ejohn.org)
*
* Licensed under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*/

(function(){

window.RetweetJS = {
// Your Bit.ly Username
bitly_user: "retweetjs",

// Your Bit.ly API Key
// Found here: http://bit.ly/account
bitly_key: "R_6287c92ecaf9efc6f39e4f33bdbf80b1",

// The text to replace the links with
link_text: " Retweet",

// What # to show (Use "clicks" for # of clicks or "none" for nothing)
count_type: "clicks",

// Tweet Prefix text
// "RT @jeresig " would result in: "RT @jeresig Link Title http://bit.ly/asdf"
prefix: "",

// Style information
styling: "a.retweet { font: 12px Helvetica,Arial; color: #000; text-decoration: none; border: 0px; }" +
"a.retweet span { color: #FFF; background: #94CC3D; margin-left: 2px; border: 1px solid #43A52A; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; padding: 3px; }" +
"a.vert { display: block; text-align: center; font-size: 16px; float: left; margin: 4px; }" +
"a.retweet strong.vert { display: block; margin-bottom: 4px; background: #F5F5F5; border: 1px solid #EEE; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; padding: 3px; }" +
"a.retweet span.vert { display: block; font-size: 12px; margin-left: 0px; }"
};

//////////////// No Need to Configure Below Here ////////////////

var loadCount = 1;

// Asynchronously load the Bit.ly JavaScript API
// If it hasn't been loaded already
if ( typeof BitlyClient === "undefined" ) {
var head = document.getElementsByTagName("head")[0] ||
document.documentElement;
var script = document.createElement("script");
script.src = "http://bit.ly/javascript-api.js?version=latest&login=" +
RetweetJS.bitly_user + "&apiKey=" + RetweetJS.bitly_key;
script.charSet = "utf-8";
head.appendChild( script );

var check = setInterval(function(){
if ( typeof BitlyCB !== "undefined" ) {
clearInterval( check );
head.removeChild( script );
loaded();
}
}, 10);

loadCount = 0;
}

if ( document.addEventListener ) {
document.addEventListener("DOMContentLoaded", loaded, false);

} else if ( window.attachEvent ) {
window.attachEvent("onload", loaded);
}

function loaded(){
// Need to wait for doc ready and js ready
if ( ++loadCount < 2 ) {
return;
}

var elems = [], urlElem = {}, hashURL = {};

BitlyCB.shortenResponse = function(data) {
for ( var url in data.results ) {
var hash = data.results[url].userHash;
hashURL[hash] = url;

var elems = urlElem[ url ];

for ( var i = 0; i < elems.length; i++ ) {
elems[i].href += hash;
}

if ( RetweetJS.count_type === "clicks" ) {
BitlyClient.stats(hash, 'BitlyCB.statsResponse');
}
}
};

BitlyCB.statsResponse = function(data) {
var clicks = data.results.clicks, hash = data.results.userHash;
var url = hashURL[ hash ], elems = urlElem[ url ];

if ( clicks > 0 ) {
for ( var i = 0; i < elems.length; i++ ) {
var strong = document.createElement("strong");
strong.appendChild( document.createTextNode( clicks + " " ) );
elems[i].insertBefore(strong, elems[i].firstChild);

if ( /(^|\s)vert(\s|$)/.test( elems[i].className ) ) {
elems[i].firstChild.className = elems[i].lastChild.className = "vert";
}
}
}

hashURL[ hash ] = urlElem[ url ] = null;
};

if ( document.getElementsByClassName ) {
elems = document.getElementsByClassName("retweet");
} else {
var tmp = document.getElementsByTagName("a");
for ( var i = 0; i < tmp.length; i++ ) {
if ( /(^|\s)retweet(\s|$)/.test( tmp[i].className ) ) {
elems.push( tmp[i] );
}
}
}

if ( elems.length && RetweetJS.styling ) {
var style = document.createElement("style");

style.type = "text/css";

try {
style.appendChild( document.createTextNode( RetweetJS.styling ) );
} catch (e) {
if ( style.styleSheet ) {
style.styleSheet.cssText = RetweetJS.styling;
}
}
var head = document.getElementsByTagName("head")[0];
if( head == null ) {
document.body.appendChild( style );
} else {
head.appendChild( style );
}
}

for ( var i = 0; i < elems.length; i++ ) {
var elem = elems[i];

if ( /(^|\s)self(\s|$)/.test( elem.className ) ) {
elem.href = window.location;
elem.title = document.title;
}

var origText = elem.title || elem.textContent || elem.innerText,
href = elem.href;

elem.innerHTML = "<span>" + RetweetJS.link_text + "</span>";
elem.title = "";
elem.href = "http://twitter.com/home?status=" +
encodeURIComponent(RetweetJS.prefix + origText + " http://bit.ly/");

if ( urlElem[ href ] ) {
urlElem[ href ].push( elem );
} else {
urlElem[ href ] = [ elem ];
BitlyClient.shorten(href, 'BitlyCB.shortenResponse');
}
}

}

})();

Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server