don't show scrollbars

This commit is contained in:
Colin Frei 2013-07-15 10:05:50 +02:00
parent fb5792270a
commit c11fdb9787

View file

@ -18,6 +18,7 @@ angular.module('podcast.directives', [])
myScroll = new iScroll(element[0], {
useTransition: true,
topOffset: pullDownOffset,
vScrollbar: false,
onRefresh: function () {
if (pullDownEl.className.match('loading')) {
pullDownEl.className = '';
@ -84,7 +85,7 @@ angular.module('podcast.directives', [])
}])
.directive('scroll', function() {
return function(scope, element, attrs, feedItems) {
var scroll = new iScroll(element[0]);
var scroll = new iScroll(element[0], {vScrollbar: false});
};
})
.directive('blob', function() {