projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c335797
)
Fix row size calculation in Opera.
author
Jan Schneider
<jan@horde.org>
Tue, 29 Jun 2010 11:43:37 +0000
(13:43 +0200)
committer
Jan Schneider
<jan@horde.org>
Tue, 29 Jun 2010 11:43:37 +0000
(13:43 +0200)
kronolith/js/kronolith.js
patch
|
blob
|
history
diff --git
a/kronolith/js/kronolith.js
b/kronolith/js/kronolith.js
index
4ecd099
..
dc6b4e8
100644
(file)
--- a/
kronolith/js/kronolith.js
+++ b/
kronolith/js/kronolith.js
@@
-901,7
+901,7
@@
KronolithCore = {
// FIXME: spacing is hardcoded for IE 7 because it doesn't know about
// border-spacing, but still uses it. WTF?
- spacing =
spacing ? parseInt($w(spacing)[1], 10) :
2;
+ spacing =
(spacing ? parseInt($w(spacing)[1], 10) : 2) ||
2;
this[storage] = {};
this[storage].height = layout.get('margin-box-height') + spacing;
this[storage].spacing = this[storage].height - layout.get('padding-box-height');