]> git.wh0rd.org - tt-rss.git/commitdiff
mention wiki in keyboard shortcuts help
authorAndrew Dolgov <fox@fakecake.org>
Sun, 21 Nov 2010 18:47:38 +0000 (21:47 +0300)
committerAndrew Dolgov <fox@fakecake.org>
Sun, 21 Nov 2010 18:47:38 +0000 (21:47 +0300)
backend.php
help/3.php
tt-rss.css
viewfeed.js

index 8110d4370dfd0890c075d372ef371f2e3dfdff38..c57f577090dce69f49871cc1ca6a6fd3f97fd4c4 100644 (file)
 
                        if (db_num_rows($result) == 1) {
                                $article_url = db_fetch_result($result, 0, 'link');
+                               $article_url = str_replace("\n", "", $article_url);
 
                                header("Location: $article_url");
                                return;
index ce2097f92b09ade16dd48bed0109efffce844436..c45da86346af7f1d4e1b447c6e6d8f06face7958 100644 (file)
@@ -67,4 +67,6 @@
 
        </td></tr></table>
 
+       <p><a target="_blank" href="http://tt-rss.org/wiki/InterfaceTips"><?php echo __("Other interface tips are available in the Tiny Tiny RSS wiki.") ?></a></p>
+
        <p class="small"><?php echo __("Press any key to close this window.") ?></p>
index d6d06a63de9e60745b50dad5e2eff425c0b72c4e..e97ab96362b6cfebf1490d856cb327ec9fd079f8 100644 (file)
@@ -1160,6 +1160,14 @@ div#hotkey_help_overlay ul {
        margin : 0px;
 }
 
+div#hotkey_help_overlay a {
+       color : #88b0f0;
+}
+
+div#hotkey_help_overlay a:hover {
+       color : white;
+}
+
 div#hotkey_help_overlay li {
        margin : 0px;
 }
index 243f3d28957e9ceb0c5adaad2b9abf47f7acb4e2..fc6fb9075accd8433e9fd5f6a9d9c6cbff604173 100644 (file)
@@ -2090,8 +2090,9 @@ function postOpenInNewTab(event, id) {
 
 function hlClicked(event, id) {
        try {
-
-               if (!event.ctrlKey) {
+               if (event.altKey) {
+                       openArticleInNewWindow(id);
+               } else if (!event.ctrlKey) {
                        view(id);
                        return true;
                } else {