cocoawebview 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/ext/cocoawebview/cocoawebview.m +3 -3
 - data/lib/cocoawebview/version.rb +1 -1
 - metadata +1 -1
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: f69adb840f4e0a253d570a08155b78718676ad46ee5774d51f4e9a4130f02b27
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: f3299408dc6712453b62cdda86bf8a9eb7c8e42d631201e2ac6823dcb319c39a
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 46debf5c14c10abd9f9a179727eb9a5ca868e8ce491cfee673bf54ac0612fea967194d743194bf4b57737ed2f5495c4c0215b8490f08896552b1781f8b4ed6ca
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: dab7764310762b5eba6cdc6f68824d68d8c97cdea53a2a1c956ae3c7dabc3b90051cc1d15deda41b1cd23e9c5466b7731dbee386c27568112d3f890aa297a0ea
         
     | 
| 
         @@ -239,9 +239,9 @@ VALUE webview_set_topmost(VALUE self, VALUE topmost); 
     | 
|
| 
       239 
239 
     | 
    
         
             
                */
         
     | 
| 
       240 
240 
     | 
    
         | 
| 
       241 
241 
     | 
    
         
             
                // Add to window's contentView
         
     | 
| 
       242 
     | 
    
         
            -
                [[window contentView] addSubview:fileDropView];
         
     | 
| 
       243 
     | 
    
         
            -
                 
     | 
| 
       244 
     | 
    
         
            -
                 
     | 
| 
      
 242 
     | 
    
         
            +
                //[[window contentView] addSubview:fileDropView];
         
     | 
| 
      
 243 
     | 
    
         
            +
                [[window contentView] addSubview: webView];
         
     | 
| 
      
 244 
     | 
    
         
            +
                [[window contentView] addSubview:fileDropView positioned:NSWindowAbove relativeTo:webView];
         
     | 
| 
       245 
245 
     | 
    
         | 
| 
       246 
246 
     | 
    
         
             
                webView.navigationDelegate = self;
         
     | 
| 
       247 
247 
     | 
    
         
             
            }
         
     | 
    
        data/lib/cocoawebview/version.rb
    CHANGED