notes list scroll css fix

This commit is contained in:
Mo Bitar
2017-01-31 10:59:50 -06:00
parent b74d709f4d
commit 69b636f2b4
4 changed files with 28 additions and 11 deletions

View File

@@ -2,8 +2,8 @@ angular.module('app.frontend').directive('infiniteScroll', [
'$rootScope', '$window', '$timeout', function($rootScope, $window, $timeout) {
return {
link: function(scope, elem, attrs) {
elem.css('overflow-x', 'hidden');
elem.css('height', 'inherit');
// elem.css('overflow-x', 'hidden');
// elem.css('height', 'inherit');
var offset = parseInt(attrs.threshold) || 0;
var e = elem[0]