1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

Got mobile view working on Opera Mobile, Safari and Android

This commit is contained in:
Jochen Wierum
2011-08-23 18:52:23 +02:00
committed by Andrew Dolgov
parent b9fca8678b
commit 9abc671546
3 changed files with 12 additions and 5 deletions
+6 -1
View File
@@ -373,7 +373,12 @@ function updatePage(page, fromPage)
backButton.style.display = "inline";
backButton.innerHTML = label;
backButton.href = page.getAttribute("myBackHref");
backButton.target = page.getAttribute("myBackTarget");
//backButton.target = page.getAttribute("myBackTarget");
target = page.getAttribute("myBackTarget");
if (target == null)
backButton.target = '';
else
backButton.target = target;
backButton.setAttribute("backwards", "true");
}
else