diff --git a/dist/ionic.js b/dist/ionic.js index 5cdd6b11cd..bd55790428 100644 --- a/dist/ionic.js +++ b/dist/ionic.js @@ -2679,7 +2679,7 @@ ionic.controllers.NavController.prototype = { } // Calculate difference from the tap points - if(Math.abs(this._lastX - this._startX) > this.dragThresholdX) { + if(!this._isDragging && Math.abs(this._lastX - this._startX) > this.dragThresholdX) { // if the difference is greater than threshold, start dragging using the current // point as the starting point this._startX = this._lastX diff --git a/example/toderp2/css/app.css b/example/toderp2/css/app.css index effacd56cb..cb77fc3669 100644 --- a/example/toderp2/css/app.css +++ b/example/toderp2/css/app.css @@ -58,7 +58,7 @@ } .toderp-small-logo { - background: url('../img/logo-header@2x.png') no-repeat transparent; + background-image: url('../img/logo-header@2x.png'); background-size: 76px 21px; } }