summaryrefslogtreecommitdiff
path: root/CyteKit/CyteWebViewController.mm
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2011-02-28 21:19:54 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2011-03-07 02:41:31 -0800
commitf172aa8f89e1ab4ae00f63ea961e04a8125ba419 (patch)
treebe8973b948ad7dda562028af81972298bceca142 /CyteKit/CyteWebViewController.mm
parent435cb85753e48dd77a02258dd6715e8cb153d429 (diff)
Separate out CyteKit/WebScriptObject-Cyte.*.
Diffstat (limited to 'CyteKit/CyteWebViewController.mm')
-rw-r--r--CyteKit/CyteWebViewController.mm16
1 files changed, 0 insertions, 16 deletions
diff --git a/CyteKit/CyteWebViewController.mm b/CyteKit/CyteWebViewController.mm
index 65a7351..9db2c8a 100644
--- a/CyteKit/CyteWebViewController.mm
+++ b/CyteKit/CyteWebViewController.mm
@@ -128,22 +128,6 @@ float CYScrollViewDecelerationRateNormal;
@end
/* }}} */
-@implementation WebScriptObject (UICaboodle)
-
-- (NSUInteger) count {
- id length([self valueForKey:@"length"]);
- if ([length respondsToSelector:@selector(intValue)])
- return [length intValue];
- else
- return 0;
-}
-
-- (id) objectAtIndex:(unsigned)index {
- return [self webScriptValueAtIndex:index];
-}
-
-@end
-
@implementation BrowserController
#if ShowInternals