This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
// Usage: | |
// | |
// <script src='http://pressly.com/redirect.js' type='text/javascript'></script> | |
// <script>Pressly.redirect("http://tablet.domain.com");</script> | |
// | |
/* >> Generated code from Issue Config */ | |
// Supported devices to redirect |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- include shared libs here... --> | |
<script src='./javascripts/lib/jquery-1.6.2.min.js' type='text/javascript'></script> | |
<script src='./javascripts/lib/underscore-min.js' type='text/javascript'></script> | |
<!-- include source files here... --> | |
<script src='./javascripts/pressly.js/pressly.core.js' type='text/javascript'></script> | |
<script src='./javascripts/pressly.js/pressly.mipmap.js' type='text/javascript'></script> | |
<script src='./javascripts/pressly.js/pressly.gesture.js' type='text/javascript'></script> | |
<script src='./javascripts/pressly.js/pressly.swipe.js' type='text/javascript'></script> | |
<script src='./javascripts/pressly.js/pressly.page.js' type='text/javascript'></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>CSS responsive images</title> | |
<style> | |
/* Doesn't stop original source image being | |
downloaded too */ | |
@media (min-device-width:600px) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<title>Stay Standalone</title> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> | |
<script src="stay_standalone.js" type="text/javascript"></script> | |
</head> | |
<body> | |
<ul> | |
<li><a href="http://google.com/">Remote Link (Google)</a></li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class HashWithDotNotation < Hash | |
def initialize(constructor = {}) | |
if constructor.is_a?(Hash) | |
super() | |
self.replace(constructor) | |
else | |
super(constructor) | |
end | |
end |
NewerOlder