How can I make the TextArea
autogrow plugin work with ember.js? It does not seem to work with Ember.TextArea
.
I tried this (coffeescript):
App.TextField = Ember.TextArea.extend
didInsertElement: ->
opts =
animate: false
cloneClass: 'faketextarea'
@$().autogrow(opts)