Skip to content

Commit 35c021e

Browse files
committed
Fixed bug 'height-as' in IE9/IE10
1 parent d001731 commit 35c021e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,16 @@ Popular examples:
4444

4545
##Changelog
4646

47+
**1.3.1** (2013-09-10)
48+
* Fixed bug in the class **height-as** of the DIV tag. Fix for IE9/IE10
49+
4750
**1.3.0** (2013-05-20)
4851
* Add class **autogrow** for TEXTAREA elements
4952
* Improved class **autoheight** for TEXTAREA elements
5053
* Add option **lb** for TEXTAREA elements
5154

5255
**1.2.2** (2013-05-08)
53-
* Fixed a bug in the class **win-center** of the tag A. The pop-up window was not centered correctly if the browser was not in fullscreen mode
56+
* Fixed a bug in the class **win-center** of the A tag. The pop-up window was not centered correctly if the browser was not in fullscreen mode
5457

5558
**1.2.1** (2013-04-19)
5659
* Fixed error in tag selection

jquery.HTMLplus.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* jQuery HTMLplus plugin
3-
* Version 1.3.0
3+
* Version 1.3.1
44
* @requires jQuery v1.5.0 or later
55
*
66
* Copyright (c) 2013 Andrea Vallorani, [email protected]
@@ -363,8 +363,7 @@
363363
var $obj=$('#'+heightas);
364364
if($obj.length) newHeight=$obj.eq(0).height();
365365
}
366-
367-
if($el.height()<newHeight) $el.css('height',newHeight);
366+
$el.css('height',newHeight);
368367
}
369368
/*else{
370369
var pheight=$el.classPre(x+'pheight');

0 commit comments

Comments
 (0)