digest: cleanup the code a bit
This commit is contained in:
parent
c8b31978c9
commit
bb4cd19be8
2 changed files with 2 additions and 35 deletions
|
@ -72,10 +72,10 @@
|
|||
|
||||
<div class="links">
|
||||
|
||||
<?php if (!SINGLE_USER_MODE) { ?>
|
||||
<?php if (!$_SESSION["hide_hello"]) { ?>
|
||||
<?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b> |
|
||||
<?php } ?>
|
||||
<?php if (!SINGLE_USER_MODE) { ?>
|
||||
<?php if (!$_SESSION["hide_logout"]) { ?>
|
||||
<a href="backend.php?op=logout"><?php echo __('Logout') ?></a> |
|
||||
<?php } ?>
|
||||
<a href='<?php echo get_self_url_prefix() ?>/index.php?mobile=false'>
|
||||
|
|
33
js/digest.js
33
js/digest.js
|
@ -452,8 +452,6 @@ function add_headline_entry(article, feed, no_effects) {
|
|||
if (d.getTime() / 1000 - article.updated < fresh_max)
|
||||
li_class = "fresh";
|
||||
|
||||
//"<img title='" + __("Share on Twitter") + "' onclick=\"tweet_article("+article.id+", true)\" src='images/art-tweet.png'>" +
|
||||
|
||||
//"<img title='" + __("Mark as read") + "' onclick=\"view("+article.id+", true)\" src='images/digest_checkbox.png'>" +
|
||||
|
||||
var checkbox_part = "<input type=\"checkbox\" class=\"cb\" onclick=\"toggle_select_article(this)\"/>";
|
||||
|
@ -798,37 +796,6 @@ function update_title(unread) {
|
|||
}
|
||||
}
|
||||
|
||||
function tweet_article(id) {
|
||||
try {
|
||||
|
||||
var query = "?op=rpc&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("tweet_article", e);
|
||||
}
|
||||
}
|
||||
|
||||
function toggle_select_article(elem) {
|
||||
try {
|
||||
var article = elem.parentNode;
|
||||
|
|
Loading…
Reference in a new issue