required change for folding views

This commit is contained in:
Andrew Trice 2012-08-29 21:06:19 -04:00
parent d15a240a08
commit 5b64876788
1 changed files with 4 additions and 0 deletions

View File

@ -139,6 +139,8 @@ SlidingView.prototype.updateBasedOnTouchPoints = function( currentPosition ) {
}, 100);
}*/
this.sidebar.trigger( "slidingViewProgress", { current: targetX, max:this.sidebarWidth } );
this.gestureStartPosition = currentPosition;
}
@ -166,6 +168,8 @@ SlidingView.prototype.snapToPosition = function() {
avoidTransforms:false,
useTranslate3d: true
}, 100);
this.sidebar.trigger( "slidingViewProgress", { current:targetX, max:this.sidebarWidth } );
}
}