#Stay Standalone
A short script to prevent internal links to a "webapp" added to iPhone home screen to open in Safari instead of navigating internally.
| <?php | |
| /** | |
| * include paginator class from ProcessWire core, $config->paths->Modulename can | |
| * be used to get the path of any module in PW. | |
| */ | |
| require_once($config->paths->MarkupPagerNav . "PagerNav.php"); | |
| /** |
| // `Default font for form elements. | |
| //---------------------------------------------------------------------------------------------------- | |
| $form-font-stack: Arial, "Liberation Sans", FreeSans, sans-serif !default; | |
| $form-font-size: 13px !default; | |
| // `Form Element Reset. | |
| //---------------------------------------------------------------------------------------------------- | |
| input::ms-clear, |
#Stay Standalone
A short script to prevent internal links to a "webapp" added to iPhone home screen to open in Safari instead of navigating internally.
| // ---------------------------------------------------------- | |
| // A short snippet for detecting versions of IE in JavaScript | |
| // without resorting to user-agent sniffing | |
| // ---------------------------------------------------------- | |
| // If you're not in IE (or IE version is less than 6) then: | |
| // ie === 0 | |
| // If you're in IE (>=6) then you can determine which version: | |
| // ie === 7; // IE7 | |
| // Thus, to detect IE: | |
| // if (ie) {} |