This website works better with JavaScript.
Home
Help
Sign In
heuzef
/
pinry
mirror of
https://github.com/pinry/pinry.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
44
Wiki
Activity
Browse Source
Properly encode query string parameters.
pull/65/head
Lapo Luchini
10 years ago
parent
e1e2c07f2b
commit
e2f61176dd
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
pinry/static/js/bookmarklet.js
+ 1
- 1
pinry/static/js/bookmarklet.js
View File
@@ -84,7 +84,7 @@ function main() {
'border': '1px solid #555'
});
$(image).click(function() {
var popUrl = getFormUrl()+imageUrl;
var popUrl = getFormUrl()+
encodeURIComponent(
imageUrl
)
;
window.open(popUrl);
$('#pinry-images').remove();
});
Write
Preview
Loading…
Cancel
Save