This repository was archived by the owner on Dec 19, 2024. It is now read-only.
File tree 1 file changed +0
-16
lines changed
1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change 180
180
181
181
/**
182
182
* Deal with the query params object being assigned to wholesale.
183
- * @export
184
183
*/
185
184
__routeQueryParamsChanged : function ( queryParams ) {
186
185
if ( queryParams && this . tail ) {
221
220
}
222
221
} ,
223
222
224
- /**
225
- * @export
226
- */
227
223
__tailQueryParamsChanged : function ( queryParams ) {
228
224
if ( queryParams && this . route && this . route . __queryParams != queryParams ) {
229
225
this . set ( 'route.__queryParams' , queryParams ) ;
230
226
}
231
227
} ,
232
228
233
- /**
234
- * @export
235
- */
236
229
__queryParamsChanged : function ( changes ) {
237
230
if ( ! this . active || this . _queryParamsUpdating ) {
238
231
return ;
246
239
this . _matched = null ;
247
240
} ,
248
241
249
- /**
250
- * @export
251
- */
252
242
__tryToMatch : function ( ) {
253
243
if ( ! this . route ) {
254
244
return ;
338
328
}
339
329
} ,
340
330
341
- /**
342
- * @export
343
- */
344
331
__tailPathChanged : function ( path ) {
345
332
if ( ! this . active ) {
346
333
return ;
356
343
this . set ( 'route.path' , newPath ) ;
357
344
} ,
358
345
359
- /**
360
- * @export
361
- */
362
346
__updatePathOnDataChange : function ( ) {
363
347
if ( ! this . route || ! this . active ) {
364
348
return ;
You can’t perform that action at this time.
0 commit comments