()
| 225 | // Since we are teleporting the $animate service, which relies on the $$postDigestQueue |
| 226 | // we need the embedded scope to use the same $$postDigestQueue as the outer scope |
| 227 | function docsRootDigest() { |
| 228 | var postDigestQueue = docsRootScope.$$postDigestQueue; |
| 229 | while (postDigestQueue.length) { |
| 230 | try { |
| 231 | postDigestQueue.shift()(); |
| 232 | } catch (e) { |
| 233 | $exceptionHandler(e); |
| 234 | } |
| 235 | } |
| 236 | } |
| 237 | embedRootScope.$watch(function () { |
| 238 | embedRootScope.$$postDigest(docsRootDigest); |
| 239 | }) |
nothing calls this directly
no outgoing calls
no test coverage detected