mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Removed console logs
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user