mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 23:58:13 +08:00
fix(refresher): use componentOnReady utility for CE build (#25783)
Resolves #25782
This commit is contained in:
@ -10,7 +10,7 @@ import {
|
||||
ION_CONTENT_ELEMENT_SELECTOR,
|
||||
printIonContentErrorMsg,
|
||||
} from '../../utils/content';
|
||||
import { clamp, getElementRoot, raf, transitionEndAsync } from '../../utils/helpers';
|
||||
import { clamp, componentOnReady, getElementRoot, raf, transitionEndAsync } from '../../utils/helpers';
|
||||
import { hapticImpact } from '../../utils/native/haptic';
|
||||
|
||||
import {
|
||||
@ -452,7 +452,7 @@ export class Refresher implements ComponentInterface {
|
||||
* Waits for the content to be ready before querying the scroll
|
||||
* or the background content element.
|
||||
*/
|
||||
await contentEl.componentOnReady();
|
||||
componentOnReady(contentEl, async () => {
|
||||
const customScrollTarget = contentEl.querySelector(ION_CONTENT_CLASS_SELECTOR);
|
||||
/**
|
||||
* Query the custom scroll target (if available), first. In refresher implementations,
|
||||
@ -484,6 +484,7 @@ export class Refresher implements ComponentInterface {
|
||||
|
||||
this.disabledChanged();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
disconnectedCallback() {
|
||||
|
||||
Reference in New Issue
Block a user