Removed console logs

This commit is contained in:
Max Lynch
2014-03-09 20:04:13 -05:00
parent ea04e393c0
commit 8652e487c6

View File

@@ -139,8 +139,6 @@
var maxLeft = this.left && this.left.width || 0;
var maxRight = this.right && this.right.width || 0;
console.log('Opening amount', amount);
// Check if we can move to that side, depending if the left/right panel is enabled
if(!(this.left && this.left.isEnabled) && amount > 0) {
this.content.setTranslateX(0);
@@ -148,7 +146,6 @@
}
if(!(this.right && this.right.isEnabled) && amount < 0) {
console.log('Blocked right');
this.content.setTranslateX(0);
return;
}