(callback, taskType)
| 21284 | } |
| 21285 | |
| 21286 | function notifyWhenNoPendingTasks(callback, taskType) { |
| 21287 | taskType = taskType || ALL_TASKS_TYPE; |
| 21288 | if (!taskCounts[taskType]) { |
| 21289 | callback(); |
| 21290 | } else { |
| 21291 | taskCallbacks.push({type: taskType, cb: callback}); |
| 21292 | } |
| 21293 | } |
| 21294 | } |
| 21295 | |
| 21296 | var $templateRequestMinErr = minErr('$templateRequest'); |
nothing calls this directly
no test coverage detected