I need to create a directive that uppercase all letter of content of a elem
<div>Hello World!</div>
with addition of all-uppercase
<div all-uppercase>HELLO WORLD!</div>
My mission is understending how Angular can provide an ability to manipulate text into existing html via "directive"
Please post working code...