Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabywalters committed Dec 20, 2012
1 parent fe636c9 commit 6e931fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion output/safari/indiewebreply_0.9.safariextension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<dict>
<key>Author</key>
<string>KangoExtensions</string>
<key>Builder Version</key>
<string>6534.57.2</string>
<key>CFBundleDisplayName</key>
<string>IndieWeb Reply</string>
<key>CFBundleIdentifier</key>
Expand All @@ -17,7 +19,7 @@
<key>Chrome</key>
<dict>
<key>Database Quota</key>
<real>10485760.0</real>
<real>10485760</real>
<key>Global Page</key>
<string>background.html</string>
<key>Popovers</key>
Expand Down
2 changes: 1 addition & 1 deletion src/common/content_script.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ var IndieWebReplyModule = (function () {

function bindTwitterFollowButtons() {
$('.twitter-follow-button').each(function (i, e) {
var urlProps = parseQueryStringFragment($(e).attr(src));
var urlProps = parseQueryStringFragment($(e).attr('src'));

var properties = {
url: 'https://twitter.com/' + urlProps.screen_name
Expand Down

0 comments on commit 6e931fb

Please sign in to comment.