Skip to content

Commit

Permalink
oops- forgot to use 'get' for 'isTextArea'
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-evans authored and Wesley Workman committed Mar 23, 2012
1 parent c697326 commit 7ace064
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frameworks/foundation/views/text_field.js
Expand Up @@ -867,7 +867,8 @@ SC.TextFieldView = SC.FieldView.extend(SC.StaticLayout, SC.Editable,
_fixupTextLayout: function () { _fixupTextLayout: function () {
var height = this.get('frame').height; var height = this.get('frame').height;


if (SC.browser.name === SC.BROWSER.ie && SC.browser.version <= 8 && !isTextArea) { if (SC.browser.name === SC.BROWSER.ie && SC.browser.version <= 8 &&
!this.get('isTextArea')) {
this.$input().css('line-height', height + 'px'); this.$input().css('line-height', height + 'px');
} }


Expand Down

0 comments on commit 7ace064

Please sign in to comment.