From ca00e7f4ed443885a8b6017204c4e003a3cdd722 Mon Sep 17 00:00:00 2001 From: swx1239486 Date: Wed, 6 Sep 2023 17:59:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E5=A4=9Aakrts=E9=A2=84=E8=AD=A6?= =?UTF-8?q?=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: swx1239486 --- .../key-features/multi-device-app-dev/responsive-layout.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zh-cn/application-dev/key-features/multi-device-app-dev/responsive-layout.md b/zh-cn/application-dev/key-features/multi-device-app-dev/responsive-layout.md index df2c334a13..816555e7a5 100644 --- a/zh-cn/application-dev/key-features/multi-device-app-dev/responsive-layout.md +++ b/zh-cn/application-dev/key-features/multi-device-app-dev/responsive-layout.md @@ -230,13 +230,13 @@ export class BreakpointSystem { } public unregister() :void{ - if(smListener){ + if(this.smListener){ this.smListener.off("change", this.isBreakpointSM) } - if(mdListener){ + if(this.mdListener){ this.mdListener.off("change", this.isBreakpointMD) } - if(lgListener){ + if(this.lgListener){ this.lgListener.off("change", this.isBreakpointLG) } } -- GitLab