Skip to content

Commit edeac33

Browse files
committed
Bad console.log, Bad!
1 parent 37c6ac8 commit edeac33

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

dist/js/ionic.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2639,7 +2639,6 @@ ionic.views.Scroll = ionic.views.View.inherit({
26392639
if ('ontouchstart' in window) {
26402640

26412641
container.addEventListener("touchstart", function(e) {
2642-
console.log('TOUCHSTART');
26432642
// Don't react if initial down happens on a form element
26442643
if (e.target.tagName.match(/input|textarea|select/i)) {
26452644
return;

js/ext/angular/test/content.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132

133133
.controller('AppCtrl', function($scope, $compile, $timeout, $element) {
134134
$scope.items = [];
135-
for(var i = 0; i < 10; i++) {
135+
for(var i = 0; i < 70; i++) {
136136
$scope.items.push({
137137
});
138138
}

js/views/scrollView.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,6 @@ ionic.views.Scroll = ionic.views.View.inherit({
572572
if ('ontouchstart' in window) {
573573

574574
container.addEventListener("touchstart", function(e) {
575-
console.log('TOUCHSTART');
576575
// Don't react if initial down happens on a form element
577576
if (e.target.tagName.match(/input|textarea|select/i)) {
578577
return;

0 commit comments

Comments
 (0)