(callback, taskType)
| 21349 | } |
| 21350 | |
| 21351 | function notifyWhenNoPendingTasks(callback, taskType) { |
| 21352 | taskType = taskType || ALL_TASKS_TYPE; |
| 21353 | if (!taskCounts[taskType]) { |
| 21354 | callback(); |
| 21355 | } else { |
| 21356 | taskCallbacks.push({type: taskType, cb: callback}); |
| 21357 | } |
| 21358 | } |
| 21359 | } |
| 21360 | |
| 21361 | var $templateRequestMinErr = minErr('$templateRequest'); |
nothing calls this directly
no test coverage detected