Guest User

Untitled

a guest
Jul 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <script>
  2. function orient() {
  3. switch(window.orientation) {
  4. case 0:
  5. document.getElementById("orient_css").href = "css/iphone_portrait.css";
  6. break;
  7. case -90:
  8. document.getElementById("orient_css").href = "css/iphone_landscape.css";
  9. break;
  10. case 90:
  11. document.getElementById("orient_css").href = "css/iphone_landscape.css";
  12. break;
  13. }
  14. }
  15. window.onload = orient();
  16. </script>
Add Comment
Please, Sign In to add comment