silverstripe-archive / silverstripe-mobile

Mobile support module for SilverStripe CMS
http://silverstripe.org/mobile/
BSD 3-Clause "New" or "Revised" License
35 stars 36 forks source link

Windows mobile doesn't seem to prase meta viewport the same way as others #17

Open sminnee opened 12 years ago

sminnee commented 12 years ago

From http://open.silverstripe.org/ticket/6006

http://msdn.microsoft.com/en-us/library/dd938878.aspx

From my testing on Windows mobile emulators they prefer commas to semi-colons so I added to my template:

<% if IsWindows %>

<% else %>

<% end_if %> and the below to MobileSiteConfiguration?:

public function IsWindows() { return MobileBrowserDetector::is_windows(); }