TerryMooreII / angular-wysiwyg

An AngularJS WYSIWYG directive that multiple instances and two-way data-binding.
MIT License
121 stars 75 forks source link

Setting Height not working #9

Closed lexingtonclayw1 closed 9 years ago

lexingtonclayw1 commented 10 years ago

I have worked with the Plunker code and also downloaded the copy but I am unable to change the height of the actual WYSIWYG box. It is staying at the default height. Any thoughts?

TerryMooreII commented 10 years ago

Thanks for letting me know. I will take a look and get this fixed.

TerryMooreII commented 10 years ago

Ok, I just changed the textarea-height to several different sizes and the text area height changed each time. Can you create a separate plunker to recreate this issue and send me the link?

adammeyer commented 10 years ago

The textarea-height attribute works great in Chrome and Firefox; but in IE 11, it seems the height attribute is ignored.

idanseri commented 9 years ago

My workaround to support height in explorer browser .wysiwyg-textarea{height:200px !important;}

hope these help.

Mord-Syth commented 9 years ago

You may use 'ng-attr-style' instead of 'style' for textArea. It seems that IE understands it.

TerryMooreII commented 9 years ago

@Mord-Syth thanks that fixed the issue.