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
/* Styles for the Plugin. These are not required, but suggested highly */ | |
.confirmBox{ /* This is the main class name passed to embedConfirm() */ | |
-moz-border-radius: 5px; | |
-webkit-border-radius: 5px; | |
background:#333; | |
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#666666), to(#000000)); | |
background-image: -moz-linear-gradient(#666666, #000000); | |
background-image: -webkit-linear-gradient(#666666, #000000); | |
background-image: -o-linear-gradient(#666666, #000000); |
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
// | |
// UIDeviceHardware.h | |
// | |
// Used to determine EXACT version of device software is running on. | |
#import <Foundation/Foundation.h> | |
@interface UIDeviceHardware : NSObject | |
- (NSString *) platform; |