Skip to content

Commit 4bd5e90

Browse files
author
pipeline
committed
config(ej2-5376): Replaced the forum link
1 parent 83c6d1a commit 4bd5e90

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@
281281
<a href="https://help.syncfusion.com/essential-js2/documentation/" target="_blank">
282282
<div class="sb-footer-link">Documentation</div>
283283
</a>
284-
<a href="https://www.syncfusion.com/forums/essentialjs2" target="_blank">
284+
<a href="https://www.syncfusion.com/forums/essential-js2" target="_blank">
285285
<div class="sb-footer-link">Forum</div>
286286
</a>
287287
<a href="https://www.syncfusion.com/blogs/" target="_blank">

src/common/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,10 +508,10 @@ function onPrevButtonClick(arg: MouseEvent): void {
508508
* Resize event processing
509509
*/
510510
function processResize(e: any): void {
511-
if (resizeManualTrigger) {
511+
isMobile = window.matchMedia('(max-width:550px)').matches;
512+
if (resizeManualTrigger || (isMobile && !select('.sb-mobile-right-pane').classList.contains('sb-hide'))) {
512513
return;
513514
}
514-
isMobile = window.matchMedia('(max-width:550px)').matches;
515515
isTablet = window.matchMedia('(min-width:550px) and (max-width: 850px)').matches;
516516
isPc = window.matchMedia('(min-width:850px)').matches;
517517
processDeviceDependables();

0 commit comments

Comments
 (0)