Recent activity
Subscribe to this feed
jdilelle replied on July 23, 2009 14:03 to the problem "Feedback widget scroll in IE7." in Get Satisfaction:
jdilelle replied on July 09, 2009 15:55 to the problem "Feedback widget scroll in IE7." in Get Satisfaction:
It appears that IE7 is executing your update_tab_position. This is no longer needed since IE7 implements fixed positioning. We can solve the problem on our end by doing feedback_widget.update_tab_position = function () {}; (on IE7).
Another issue: on IE6, the update_tab_position function hardcodes the 'top' position value. This isn't a great idea. You could instead do something like this:
if (/MSIE 6/i.test(navigator.userAgent)) {
var fdbk_tab_top = GSFN.gId('fdbk_tab').currentStyle.top;
fdbk_tab_top = parseInt(fdbk_tab_top.replace(/px/, ''));
feedback_widget.update_tab_position = function () {
this.scroll_top = document.documentElement.scrollTop || document.body.scrollTop;
GSFN.gId('fdbk_tab').style.top = this.scroll_top + fdbk_tab_top + "px";
};
}
Note however that this snipped handles only pixel positioning (not percentages).
In any case, let me know if this isn't clear.
jdilelle replied on July 09, 2009 14:28 to the problem "Feedback widget scroll in IE7." in Get Satisfaction:
jdilelle replied on July 09, 2009 13:50 to the problem "Feedback widget scroll in IE7." in Get Satisfaction:
By "scrolls improperly" I mean that it doesn't stay in place when you scroll the page. Here are the repro-steps:
1. Visit http://akoha.com/ on IE7.
2. Make sure the browser displays the vertical scroll-bar (reduce the browser's height).
3. Scroll the page.
Expected result: the feedback tab stays in place.
Actual result: the feedback tab scrolls.
jdilelle replied on July 08, 2009 14:28 to the problem "Feedback widget scroll in IE7." in Get Satisfaction:
We are using the latest version and the widget still scrolls on IE7.
You can take a look at the page source on http://akoha.com .
jdilelle reported a problem in Get Satisfaction on July 03, 2009 18:25:
Feedback widget scroll in IE7.Feedback Widget scrolls improperly in IE7 when the user scrolls the page.
See http://akoha.com/feedback/ for an example.
jdilelle replied on September 25, 2008 19:20 to the problem ""Suggest a Mission" with picture failed to upload 09.25.08" in Akoha:
Loading Profile...
