summaryrefslogtreecommitdiff
path: root/plugins/pinterest/pinterest.js
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pinterest/pinterest.js')
-rw-r--r--plugins/pinterest/pinterest.js31
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/pinterest/pinterest.js b/plugins/pinterest/pinterest.js
new file mode 100644
index 000000000..01c525f55
--- /dev/null
+++ b/plugins/pinterest/pinterest.js
@@ -0,0 +1,31 @@
+ function pinterest(id) {
+ try {
+ var query = "?op=pluginhandler&plugin=pinterest&method=getInfo&id=" + param_escape(id);
+
+ console.log(query);
+
+ var d = new Date();
+ var ts = d.getTime();
+
+ var w = window.open('backend.php?op=backend&method=loading', 'ttrss_tweet',
+ "status=0,toolbar=0,location=0,width=650,height=600,scrollbars=1,menubar=0");
+
+ new Ajax.Request("backend.php", {
+ parameters: query,
+ onComplete: function(transport) {
+ var ti = JSON.parse(transport.responseText);
+
+ var share_url = "http://pinterest.com/pin/create/button/?" +
+ "url=" + param_escape(ti.link) +
+ "&description=" + param_escape(ti.title);
+
+ w.location.href = share_url;
+
+ } });
+
+
+ } catch (e) {
+ exception_error("tweetArticle", e);
+ }
+ }
+