* @param {string} provider * @param {string} method * @param {String=} insertMethod * @returns {angular.Module}
(provider, method, insertMethod)
| 1288 | * @returns {angular.Module} |
| 1289 | */ |
| 1290 | function invokeLater(provider, method, insertMethod) { |
| 1291 | return function() { |
| 1292 | invokeQueue[insertMethod || 'push']([provider, method, arguments]); |
| 1293 | return moduleInstance; |
| 1294 | } |
| 1295 | } |
| 1296 | }); |
| 1297 | }; |
| 1298 | }); |