@@ -113,50 +113,43 @@ function($scope,
113
113
} ;
114
114
115
115
self . scrollTop = function ( shouldAnimate ) {
116
- ionic . DomUtil . blurAll ( ) ;
117
116
self . resize ( ) . then ( function ( ) {
118
117
scrollView . scrollTo ( 0 , 0 , ! ! shouldAnimate ) ;
119
118
} ) ;
120
119
} ;
121
120
122
121
self . scrollBottom = function ( shouldAnimate ) {
123
- ionic . DomUtil . blurAll ( ) ;
124
122
self . resize ( ) . then ( function ( ) {
125
123
var max = scrollView . getScrollMax ( ) ;
126
124
scrollView . scrollTo ( max . left , max . top , ! ! shouldAnimate ) ;
127
125
} ) ;
128
126
} ;
129
127
130
128
self . scrollTo = function ( left , top , shouldAnimate ) {
131
- ionic . DomUtil . blurAll ( ) ;
132
129
self . resize ( ) . then ( function ( ) {
133
130
scrollView . scrollTo ( left , top , ! ! shouldAnimate ) ;
134
131
} ) ;
135
132
} ;
136
133
137
134
self . zoomTo = function ( zoom , shouldAnimate , originLeft , originTop ) {
138
- ionic . DomUtil . blurAll ( ) ;
139
135
self . resize ( ) . then ( function ( ) {
140
136
scrollView . zoomTo ( zoom , ! ! shouldAnimate , originLeft , originTop ) ;
141
137
} ) ;
142
138
} ;
143
139
144
140
self . zoomBy = function ( zoom , shouldAnimate , originLeft , originTop ) {
145
- ionic . DomUtil . blurAll ( ) ;
146
141
self . resize ( ) . then ( function ( ) {
147
142
scrollView . zoomBy ( zoom , ! ! shouldAnimate , originLeft , originTop ) ;
148
143
} ) ;
149
144
} ;
150
145
151
146
self . scrollBy = function ( left , top , shouldAnimate ) {
152
- ionic . DomUtil . blurAll ( ) ;
153
147
self . resize ( ) . then ( function ( ) {
154
148
scrollView . scrollBy ( left , top , ! ! shouldAnimate ) ;
155
149
} ) ;
156
150
} ;
157
151
158
152
self . anchorScroll = function ( shouldAnimate ) {
159
- ionic . DomUtil . blurAll ( ) ;
160
153
self . resize ( ) . then ( function ( ) {
161
154
var hash = $location . hash ( ) ;
162
155
var elm = hash && $document [ 0 ] . getElementById ( hash ) ;
@@ -180,11 +173,7 @@ function($scope,
180
173
/**
181
174
* @private
182
175
*/
183
- self . _setRefresher = function (
184
- refresherScope ,
185
- refresherElement ,
186
- refresherMethods
187
- ) {
176
+ self . _setRefresher = function ( refresherScope , refresherElement , refresherMethods ) {
188
177
self . refresher = refresherElement ;
189
178
var refresherHeight = self . refresher . clientHeight || 60 ;
190
179
scrollView . activatePullToRefresh (
0 commit comments