diff --git a/css/screen.css b/css/screen.css index d1b2fe4..3c995bf 100644 --- a/css/screen.css +++ b/css/screen.css @@ -291,12 +291,14 @@ canvas { #full .article { clear: both; padding-top: 1em; + padding-bottom: 2.8em; font-size: 1.3em; } #full footer.bar { + bottom: 0; margin: auto 0 0 0; - position: relative; + position: fixed; height: 3.8em; } diff --git a/js/App.js b/js/App.js index bbcc0dd..6354c4e 100644 --- a/js/App.js +++ b/js/App.js @@ -14,11 +14,12 @@ App.prototype.authenticate = function() { }; App.prototype.after_login = function(backend) { - + /* var request = window.navigator.mozApps.getSelf(); request.onsuccess = function() { $("#version").innerHTML = request.result.manifest.version; } + */ var _this = this; diff --git a/js/Pond.js b/js/Pond.js index cdea2b0..8765ce2 100644 --- a/js/Pond.js +++ b/js/Pond.js @@ -195,7 +195,7 @@ Pond.prototype.setArticleUnstarred = function(articles, callback) { } Pond.prototype.logOut = function() { - this.doOperation("auth/sessions/" + this.session_token ); + this.doOperation("DELETE", "auth/sessions/" + this.session_token ); localStorage.feeds = null; }