Skip to content

Commit

Permalink
config(ej2-5376): Replaced the forum link
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed Nov 14, 2017
1 parent 83c6d1a commit 4bd5e90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
<a href="https://help.syncfusion.com/essential-js2/documentation/" target="_blank">
<div class="sb-footer-link">Documentation</div>
</a>
<a href="https://www.syncfusion.com/forums/essentialjs2" target="_blank">
<a href="https://www.syncfusion.com/forums/essential-js2" target="_blank">
<div class="sb-footer-link">Forum</div>
</a>
<a href="https://www.syncfusion.com/blogs/" target="_blank">
Expand Down
4 changes: 2 additions & 2 deletions src/common/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -508,10 +508,10 @@ function onPrevButtonClick(arg: MouseEvent): void {
* Resize event processing
*/
function processResize(e: any): void {
if (resizeManualTrigger) {
isMobile = window.matchMedia('(max-width:550px)').matches;
if (resizeManualTrigger || (isMobile && !select('.sb-mobile-right-pane').classList.contains('sb-hide'))) {
return;
}
isMobile = window.matchMedia('(max-width:550px)').matches;
isTablet = window.matchMedia('(min-width:550px) and (max-width: 850px)').matches;
isPc = window.matchMedia('(min-width:850px)').matches;
processDeviceDependables();
Expand Down

0 comments on commit 4bd5e90

Please sign in to comment.