For some reasons, I can\'t change the style of an element using the following :
angular.element(\"#element\").style.height = 100px;
I\'m su
If you are running Angular without jQuery, this works:
angular.element(document.querySelector("#element"))[0].style.height = "100px";
I have tested this in an ionic application.