diff --git a/app/assets/javascripts/app/views/publisher_view.js b/app/assets/javascripts/app/views/publisher_view.js index 2274aeb74..10912928e 100644 --- a/app/assets/javascripts/app/views/publisher_view.js +++ b/app/assets/javascripts/app/views/publisher_view.js @@ -67,7 +67,7 @@ app.views.Publisher = Backbone.View.extend({ open : function() { $(this.el).removeClass('closed'); this.$("#publisher_textarea_wrapper").addClass('active'); - this.$("textarea.ac_input").css('min-height', '42px'); + this.$("textarea").css('height', '42px'); return this; }, @@ -75,7 +75,7 @@ app.views.Publisher = Backbone.View.extend({ close : function() { $(this.el).addClass("closed"); this.$("#publisher_textarea_wrapper").removeClass("active"); - this.$("textarea.ac_input").css('min-height', ''); + this.$("textarea").css('height', ''); return this; }