/Tools/NativeHost/AppController+WebFrameLoadDelegate.m

http://github.com/cacaodev/cappuccino · Objective C · 26 lines · 11 code · 8 blank · 7 comment · 2 complexity · 18df31aabfe417edea6f6a04b0c10bd8 MD5 · raw file

  1. //
  2. // AppController+WebFrameLoadDelegate.m
  3. // NativeHost
  4. //
  5. // Created by Francisco Tolmasky on 7/28/09.
  6. // Copyright 2009 280 North, Inc.. All rights reserved.
  7. //
  8. #import "AppController.h"
  9. #import "BridgedMethods.h"
  10. @implementation AppController (WebFrameLoadDelegate)
  11. - (void)webView:(WebView *)aWebView didClearWindowObject:(WebScriptObject *)aWindowObject forFrame:(WebFrame *)aFrame
  12. {
  13. if (aWebView == webView)
  14. [GlobalMethods enhanceWindowObject:aWindowObject ofWebView:aWebView];
  15. else
  16. [WindowMethods enhanceWindowObject:aWindowObject ofWebView:aWebView];
  17. }
  18. @end