I want to be able to change the stylesheet in the <link>
element through Angular2 (say, style2.css). Given that the element is not part of the <ng2-app>
element (the part that Angular2 manipulates), is this possible?
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<ng2-app>
<div class="loading">Loading…</div>
<div style="text-align: center;clear: both;" class="md-headline">Application Loading....</div>
</ng2-app>
</html>