Created
May 29, 2009 03:54
-
-
Save dnch/119776 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // the DOM is wacky | |
| targetTabHeight: function() { | |
| this.targetTab().style.visibility = "hidden"; | |
| this.targetTab().style.display = "block"; | |
| _height = this.targetTab().offsetHeight; | |
| this.targetTab().style.display = "none"; | |
| this.targetTab().style.visibility = "visible"; | |
| return _height; | |
| }, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment