It would be great if you could patch it to work with IE7. Here is my debug string:
Your Browser: Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50215; Avalon 6.0.4030; %WAP version%)
FreeTextBox.IsRichCapable: False
Current Version: 3.0.4
I'm using IE7 with DasBlog, which uses FTB. I tried changing FTB-Util.js to make it work, but it appears that the FTB bin used by DasBlog does not reference the .js:
function FTB_BrowserDetect() {
doc=window.document;
navVersion=navigator.appVersion.toLowerCase();
this.ie4=(!doc.getElementById&&doc.all)?true:false;
this.ie5=(navVersion.indexOf("msie 5.0")!=-1)?true:false;
this.ie55=(navVersion.indexOf("msie 5.5")!=-1)?true:false;
this.ie6=(navVersion.indexOf("msie 6.0")!=-1)?true:false;
this.ie7=(navVersion.indexOf("msie 7.0")!=-1)?true:false;
this.isIE=(this.ie5||this.ie55||this.ie6||this.ie7)?true:false;
this.isGecko=!this.isIE;
};
FTB_Browser = new FTB_BrowserDetect();
Thanks!!!