phusion / juvia

A commenting server similar to Disqus and IntenseDebate.

Home Page:http://phusion.github.io/juvia/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Browsers Supported?

billc opened this issue · comments

What browsers are or are planned to be supported?

I have a need to support IE8 clients with similar functionality. I accessed the demo site and received a javascript issue. I assume IE8 is probably shunned, but was looking for an official disclaimer on browsers supported.

Are you talking about the administration interface, or the main commenting form? The main commenting form should support IE 7+ just fine. I've never tested the administration interface outside of Firefox and Chrome though. Maybe someone else has?

From the admin site, I accessed a demo site page to display the commenting page. It shows the script tag information to include, some of the comments, but only has a loading image for the comment form. I am not work with IE8 available, but I can post a screenshot tomorrow if helpful. The javascript error text is unhelpful.

Image of the failure in IE8. Again javascript error text is not very helpful. Syntax error in show_topic.js line: 2235 char: 3, code: 0

Could you find out what is on that line? I guess it might be the line with >>> in

    /** Casts the given integer as unsigned 32-bit. */
    Juvia.uint32 = function(i) {
        return i >>> 0;
    }

But http://msdn.microsoft.com/en-us/library/ie/342xfs5s(v=vs.94).aspx says IE7+ should support the operator anyway...