summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-09-14 05:22:28 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-09-14 05:22:28 +0200
commit752e45abfe79d19ff0beb0be37cf58438cd37d25 (patch)
tree4f901700d9994c3e8ddd4e95e088dee13459e095
parentec513ada34d917950057033e2b49bff9d5c7ec91 (diff)
allow by default
-rw-r--r--js/public/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/public/app.js b/js/public/app.js
index 886436f9a..eab057778 100644
--- a/js/public/app.js
+++ b/js/public/app.js
@@ -455,7 +455,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
angular.module('News').directive('newsPullToRefresh', [
'$rootScope', function($rootScope) {
var allowed, directive;
- allowed = false;
+ allowed = true;
$rootScope.$on('loadingNewItems', function() {
return allowed = false;
});