This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Twittia/OAToken+WebView.m
2010-05-02 17:43:45 +02:00

23 lines
396 B
Objective-C

//
// OAToken+WebView.m
// Twittia 2
//
// Created by Jeena on 02.05.10.
// Licence: BSD (see attached LICENCE.txt file).
//
#import "OAToken+WebView.h"
// this is just so the JavaScript can get the tokens.
@implementation OAToken(WebView)
+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector {
return NO;
}
+ (BOOL)isKeyExcludedFromWebScript:(const char *)name {
return NO;
}
@end