(success)
| 28 | } |
| 29 | } |
| 30 | function onLoginDialogClose(success) { |
| 31 | loginDialog = null; |
| 32 | if ( success ) { |
| 33 | queue.retryAll(); |
| 34 | } else { |
| 35 | queue.cancelAll(); |
| 36 | redirect(); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | // Register a handler for when an item is added to the retry queue |
| 41 | queue.onItemAddedCallbacks.push(function(retryItem) { |
nothing calls this directly
no test coverage detected