This file contains 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
// | |
// UIViewController+iAd.h | |
// | |
// Created by James Cryer on 04/10/2012. | |
// | |
// | |
#import <UIKit/UIKit.h> | |
#import "iAd/iAd.h" |
This file contains 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(exports) { | |
var Class = function(parent) { | |
var klass = function() { | |
this.init.apply(this, arguments); | |
}; | |
if(parent) { | |
var subclass = function(){}; | |
subclass.prototype = parent.prototype; |
This file contains 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
var PubSub = { | |
subscribe: function(ev, callback) { | |
var calls = this._callbacks || (this._callbacks = {}); | |
(this._callbacks[ev] || (this._callbacks[ev] = [])).push(callback); | |
return this; | |
}, | |
publish: function() { | |
var args = Array.prototype.slice.call(arguments, 0); |
This file contains 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
/* Mobile landscape */ | |
@media screen and (min-width: 480px) { | |
} | |
/* Small tablet portrait */ | |
@media screen and (min-width: 600px) { | |
} |
This file contains 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
object, | |
embed, | |
video, | |
img { | |
max-width: 100%; | |
height: auto; | |
} |
This file contains 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
<!-- insert in head --> | |
<meta name=”viewport” content=”initial-scale=1.0, width=device-width” /> | |
<!-- end --> |
This file contains 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
@font-face { | |
font-family: 'icomoon'; | |
src:url('fonts/icomoon.eot'); | |
src:url('fonts/icomoon.eot?#iefix') format('embedded-opentype'), | |
url('fonts/icomoon.woff') format('woff'), | |
url('fonts/icomoon.ttf') format('truetype'), | |
url('fonts/icomoon.svg#icomoon') format('svg'); | |
font-weight: normal; | |
font-style: normal; | |
} |
This file contains 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 xmlns="http://www.w3.org/1999/xhtml" lang="en"> | |
<head> | |
<title>Wordpress Users Wales</title> | |
<link rel="stylesheet" href="css/style.css" /> | |
</head> | |
<body class="home blog vigilance-light highlander-enabled highlander-light infinite-scroll neverending"> | |
<div id="wrapper"> | |
<div id="header" class="clear"> | |
<h1 id="title"><a href="http://cardiffusers.wordpress.com"><span>Wordpress Users Wales</span></a></h1> |
This file contains 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 xmlns="http://www.w3.org/1999/xhtml" lang="en"> | |
<head> | |
<title>Wordpress Users Wales</title> | |
<link rel="stylesheet" href="css/base.css" /> | |
<link rel="stylesheet" href="css/responsive.css" /> | |
<!-- insert in head --> | |
<meta name=”viewport” content=”initial-scale=1.0, width=device-width” /> | |
This file contains 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
/* Mobile landscape */ | |
@media screen and (min-width: 480px) { | |
} | |
/* Small tablet portrait */ | |
@media screen and (min-width: 600px) { | |
} |
OlderNewer