Anyone implemented/used Mobile Device Screen Orientation plugin? | Community
Skip to main content
Level 3
October 29, 2015
Solved

Anyone implemented/used Mobile Device Screen Orientation plugin?

  • October 29, 2015
  • 2 replies
  • 1626 views

Hi,

Has anyone successfully implemented screen orientation plugin in Sitecatalyst to capture mobile device orientation?. When we use the below code in the s_code,  in the web page i am seeing some unusual behavior(ie: when we scroll the page to the bottom and then if i click anywhere on the content section, page goes to the top by default). I understand, that's happening because of this line "window.scroll(0,0)". Any help or thoughts?

Plugin Code below:function screenOrientation(){switch(window.orientation){case 0:case 180:return("Portrait");break;case 90:case -90:return("Landscape");}window.scroll(0,0)}

Reference: http://webanalyticsland.com/sitecatalyst-implementation/capture-mobile-device-screen-orientation-in-sitecatalyst

Thanks in Advance.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by m_1985

Hi Gigazelle,

Thanks for the reply. It works fine if we remove that line.

2 replies

Gigazelle
Adobe Employee
Adobe Employee
November 6, 2015

I struggle to see the value of the window.scroll function in context of the plugin. What happens if you remove that line?

m_1985AuthorAccepted solution
Level 3
November 9, 2015

Hi Gigazelle,

Thanks for the reply. It works fine if we remove that line.