Changeset 319 for trunk/uploadr/extensions/helloworld
- Timestamp:
- 04/01/08 23:43:23 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/uploadr/extensions/helloworld/content/overlay.js
r297 r319 70 70 // After reorder: called after the photo list is reordered for any reason. 71 71 // Callback argument: boolean, true if the user dragged photos around, 72 // false if the photos were sorted by date taken72 // false if the photos were sorted by date taken 73 73 // See also: mouse.js, threads.js 74 74 extension.after_reorder.add(function(from_user) { … … 94 94 95 95 // After one upload: called after an individual upload finishes. 96 // Callback argument : Photo object, success/failure boolean96 // Callback arguments: Photo object, success/failure boolean 97 97 // See also: upload.js 98 98 extension.after_one_upload.add(function(photo, success) { … … 110 110 // After upload: called after a batch of uploads finishes. 111 111 // Callback arguments: array of successful Photo objects, array of failed 112 // Photo objects112 // Photo objects 113 113 // See also: photos.js, upload.js 114 114 extension.after_upload.add(function(photo_ids, failed) {