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> | |
<head> | |
<meta charset="utf-8"> | |
<title>jQuery Mobile Transition Test Case</title> | |
</head> | |
<body> | |
<link rel="stylesheet" href="jquery.mobile-1.0b2.min.css" /> | |
<script src="jquery-1.6.2.min.js"></script> | |
<script src="jquery.mobile-1.0b2.min.js"></script> |
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
// | |
// SampleCell.h | |
// | |
// Created by Mathieu Godart on 24/03/11. | |
// Copyright 2011 L'atelier du mobile. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
@interface SampleCell : UITableViewCell {} |
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
// | |
// NSObject+Performer.h | |
// EurActiv | |
// | |
// Created by Mathieu Godart on 21/01/11. | |
// Copyright 2011 L'atelier du mobile. All rights reserved. | |
// | |
#import <Foundation/Foundation.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
#import <Foundation/Foundation.h> | |
#import <MessageUI/MessageUI.h> | |
@interface NSURL (MailComposeViewController) | |
// Is the given request a mailto URL. | |
- (BOOL)isMailtoRequest; | |
@end | |