Comment #4 on issue 2259 by [email protected]: Replying to a comment on a
review breaks the js popup on IE8
http://code.google.com/p/reviewboard/issues/detail?id=2259
Here's a workaround, to change the floating review box into a fixed box on
IE.
--- ./reviewboard/htdocs/media/rb/js/reviews.js.orig 2011-10-14
14:57:17.000000000 -0400
+++ ./reviewboard/htdocs/media/rb/js/reviews.js 2011-10-14
15:05:48.000000000 -0400
@@ -832,6 +832,11 @@
return;
}
+ /* floating fails on IE */
+ if ($.browser.msie) {
+ return;
+ }
+
if (floatSpacer == null) {
floatSpacer = self.wrap($("<div/>")).parent();
updateSize();
--
You received this message because you are subscribed to the Google Groups
"reviewboard-issues" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/reviewboard-issues?hl=en.