Skip to content

Commit

Permalink
Rebuilt
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabywalters committed Dec 20, 2012
1 parent 177cfe3 commit ca4c6cd
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 11 deletions.
4 changes: 2 additions & 2 deletions output/chrome/content_script.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ var IndieWebReplyModule = (function () {
var properties = parseQueryStringFragment(src);
var newButton = createReplacementButton('Post to your Indieweb Site', function () {
openNoteUI('post', {
url: (properties.url ? properties.url : window.location),
url: (properties.url ? properties.url : document.location.href),
username: '@' + properties.via,
hashtags: properties.hashtags,
text: properties.text
Expand All @@ -160,7 +160,7 @@ var IndieWebReplyModule = (function () {
var url = $(e).attr('href');

var properties = {
url: (url ? url : window.location)
url: (url ? url : document.location.href)
};

var newButton = createReplacementButton('Post to your Indieweb Site', function () { openNoteUI('favourite', properties); });
Expand Down
4 changes: 2 additions & 2 deletions output/firefox/chrome/content/content_script.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ var IndieWebReplyModule = (function () {
var properties = parseQueryStringFragment(src);
var newButton = createReplacementButton('Post to your Indieweb Site', function () {
openNoteUI('post', {
url: (properties.url ? properties.url : window.location),
url: (properties.url ? properties.url : document.location.href),
username: '@' + properties.via,
hashtags: properties.hashtags,
text: properties.text
Expand All @@ -160,7 +160,7 @@ var IndieWebReplyModule = (function () {
var url = $(e).attr('href');

var properties = {
url: (url ? url : window.location)
url: (url ? url : document.location.href)
};

var newButton = createReplacementButton('Post to your Indieweb Site', function () { openNoteUI('favourite', properties); });
Expand Down
Binary file modified output/indiewebreply_0.9.oex
Binary file not shown.
Binary file modified output/indiewebreply_0.9.xpi
Binary file not shown.
4 changes: 2 additions & 2 deletions output/opera/content_script.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ var IndieWebReplyModule = (function () {
var properties = parseQueryStringFragment(src);
var newButton = createReplacementButton('Post to your Indieweb Site', function () {
openNoteUI('post', {
url: (properties.url ? properties.url : window.location),
url: (properties.url ? properties.url : document.location.href),
username: '@' + properties.via,
hashtags: properties.hashtags,
text: properties.text
Expand All @@ -160,7 +160,7 @@ var IndieWebReplyModule = (function () {
var url = $(e).attr('href');

var properties = {
url: (url ? url : window.location)
url: (url ? url : document.location.href)
};

var newButton = createReplacementButton('Post to your Indieweb Site', function () { openNoteUI('favourite', properties); });
Expand Down
4 changes: 1 addition & 3 deletions output/safari/indiewebreply_0.9.safariextension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
<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 @@ -19,7 +17,7 @@
<key>Chrome</key>
<dict>
<key>Database Quota</key>
<real>10485760</real>
<real>10485760.0</real>
<key>Global Page</key>
<string>background.html</string>
<key>Popovers</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ var IndieWebReplyModule = (function () {
var properties = parseQueryStringFragment(src);
var newButton = createReplacementButton('Post to your Indieweb Site', function () {
openNoteUI('post', {
url: (properties.url ? properties.url : window.location),
url: (properties.url ? properties.url : document.location.href),
username: '@' + properties.via,
hashtags: properties.hashtags,
text: properties.text
Expand All @@ -160,7 +160,7 @@ var IndieWebReplyModule = (function () {
var url = $(e).attr('href');

var properties = {
url: (url ? url : window.location)
url: (url ? url : document.location.href)
};

var newButton = createReplacementButton('Post to your Indieweb Site', function () { openNoteUI('favourite', properties); });
Expand Down

0 comments on commit ca4c6cd

Please sign in to comment.