deepDropUpload icon indicating copy to clipboard operation
deepDropUpload copied to clipboard

Example for dragging files from the desktop to any CPView in a Cappuccino app running in a browser.

Results 1 deepDropUpload issues
Sort by recently updated
recently updated
newest added

Hello, the lines containing this code: ``` if ([dropDelegate respondsToSelector:@selector(fileDropController:didBeginUpload:)]) [dropDelegate fileDropController:self didBeginUpload:upload]; ``` should be: ``` if ([dropDelegate respondsToSelector:@selector(fileDropUploadController:didBeginUpload:)]) [dropDelegate fileDropUploadController:self didBeginUpload:upload]; ``` so it's coherent with the other...