From 01cb207b6562aa82faeb042bdc58101da6bc1335 Mon Sep 17 00:00:00 2001 From: Jeena Date: Fri, 21 Feb 2014 11:35:58 +0100 Subject: [PATCH] some reverts --- css/screen.css | 10 ++-------- index.html | 9 +++++++++ js/App.js | 24 ++++-------------------- js/Pond.js | 8 +++++--- 4 files changed, 20 insertions(+), 31 deletions(-) diff --git a/css/screen.css b/css/screen.css index b5116bd..46bcd45 100644 --- a/css/screen.css +++ b/css/screen.css @@ -165,7 +165,6 @@ canvas { list-style-type: none; margin: 0; padding: 0; - word-wrap: break-word; } #list p { @@ -285,23 +284,18 @@ canvas { float: left; } -#full article header p:nth-child(2) { - float: right; -} - #full article header p:nth-child(3) { - clear: both; + float: right; } #full .article { clear: both; padding-top: 1em; - padding-bottom: 2.8em; + padding-bottom: 3em; font-size: 1.3em; } #full footer.bar { - bottom: 0; margin: auto 0 0 0; position: fixed; height: 3.8em; diff --git a/index.html b/index.html index d851058..feaa4f4 100644 --- a/index.html +++ b/index.html @@ -10,6 +10,8 @@ + + @@ -62,7 +64,14 @@ +

+ + + +

+ + diff --git a/js/App.js b/js/App.js index 5b51703..be5ebe6 100644 --- a/js/App.js +++ b/js/App.js @@ -7,16 +7,6 @@ function App() { if(!color) color = "red"; this.setColor(color); this.fontChange(); - - var _this = this; - - window.onkeydown = function(e) { - if(e.keyCode == 39) { - _this.showNext(); - } else if(e.keyCode == 37) { - _this.showPrevious(); - } - } }; App.prototype.authenticate = function() { @@ -27,12 +17,9 @@ App.prototype.after_login = function(backend) { /* var request = window.navigator.mozApps.getSelf(); request.onsuccess = function() { - if(request.result) { - $("#version").innerHTML = request.result.manifest.version; - } + $("#version").innerHTML = request.result.manifest.version; }*/ - var _this = this; window.onhashchange = function(e) { @@ -289,8 +276,8 @@ App.prototype.showFull = function(article, slide_back) { $(page_id + " .date").innerHTML = (new Date(parseInt(article.updated, 10) * 1000)).toLocaleString(); - var title = $(page_id + " .link"); - title.innerHTML = article.link; + var title = $(page_id + " .title"); + title.innerHTML = article.title; title.href = article.link; $(page_id + " .feed_title").innerHTML = article.feed_title; @@ -299,10 +286,7 @@ App.prototype.showFull = function(article, slide_back) { if(article.author && article.author.length > 0) $(page_id + " .author").innerHTML = "– " + article.author; - - var content = article.content - if(content.replace(/^\s+|\s+$/g,'').length == 0) content = article.title; - $(page_id + " .article").innerHTML = content.urlify(); + $(page_id + " .article").innerHTML = article.content; $$(page_id + " .article a").forEach(function(o, i) { o.target = "_blank"; }); diff --git a/js/Pond.js b/js/Pond.js index 5991620..8765ce2 100644 --- a/js/Pond.js +++ b/js/Pond.js @@ -46,7 +46,7 @@ Pond.prototype.doOperation = function(method, operation, new_options, callback) body = a.join("&"); } - var xhr = new XMLHttpRequest(); + var xhr = new XMLHttpRequest({mozSystem: true}); xhr.onreadystatechange = function() { if(xhr.readyState == 4) { if(xhr.status == 200) { @@ -76,7 +76,7 @@ Pond.prototype.reload = function(callback) { Pond.prototype.getUnreadFeeds = function(callback, skip) { var options = { - status: "unread", + status: "all", limit: 100 }; @@ -134,6 +134,8 @@ Pond.prototype.normalizeArticle = function(article) { var timestamp = new Date(article.published_at).getTime() / 1000; + console.log(article.read) + return { id: article.id, guid_hash: article.url + article.id, @@ -207,7 +209,7 @@ Pond.login = function(server_url, user, password, callback) { var password_hash = md5(user + ':' + password) var options = "username=" + user.toLowerCase() + "&" + "password=" + password_hash; - var xhr = new XMLHttpRequest(); + var xhr = new XMLHttpRequest({mozSystem: true}); xhr.onreadystatechange = function() { if(xhr.readyState == 4) { if(xhr.status == 201) {