mirror of
				https://git.tt-rss.org/fox/tt-rss.git
				synced 2025-11-03 21:31:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			766 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			766 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
	function tweetArticle(id) {
 | 
						|
	try {
 | 
						|
		var query = "?op=rpc&method=buttonPlugin&plugin=tweet&plugin_method=getTweetInfo&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=500,height=400,scrollbars=1,menubar=0");
 | 
						|
 | 
						|
		new Ajax.Request("backend.php",	{
 | 
						|
			parameters: query,
 | 
						|
			onComplete: function(transport) {
 | 
						|
				var ti = JSON.parse(transport.responseText);
 | 
						|
 | 
						|
				var share_url = "http://twitter.com/share?_=" + ts +
 | 
						|
					"&text=" + param_escape(ti.title) +
 | 
						|
					"&url=" + param_escape(ti.link);
 | 
						|
 | 
						|
				w.location.href = share_url;
 | 
						|
 | 
						|
			} });
 | 
						|
 | 
						|
 | 
						|
	} catch (e) {
 | 
						|
		exception_error("tweetArticle", e);
 | 
						|
	}
 | 
						|
	}
 | 
						|
 |