<!doctype html> window.addMutationObserver = function(){ if(!window.MutationObserver){ return; } new window.MutationObserver(function(){}).observe(document.body, { childList: true, subtree: true }); }; angular.module('example', []); {{ 'This works.' }} — {{ "This ...