Pergunta

This page, which implements a JavaScript-based online solver for Freecell, does not work in Microsoft Internet Explorer 8 (and possibly below) on my Windows XP 32-bit virtual machine. It works fine in Firefox on the same virtual machine, as well as on Firefox 17.0.2 ESR, Opera and Google Chromium on my x86-64 Mageia Linux 3 system.

To reproduce:

  • Type "2" in the deal number.

  • Press "Populate".

  • Press "Solve".

MSIE 8 throws a fit and claims that "FC_Solve" is not defined, but it is in http://www.shlomifish.org/fc-solve-temp/js/web-fc-solve.js which is included above it and sourced using a script.

I wish I could have dropped support from old versions of MSIE in that page, but I want it to be as idiot-proof as possible, because that was part of the motivation in me creating an online, JavaScript-based, version of my solver, which is written in C. That's because some people asked me to manually solve deals from them because they lacked the know-how to install and run my solver themselves.

How can I fix it?

Foi útil?

Solução

IE<=9 does not support typed arrays (Uint8Array etc.) which libfreecellsolver.js seems to use. That most likely prevents it from running on any IE not supporting typed arrays.

Besides that, you want String instead of string:

if (!string.prototype.repeat) {
string.prototype.repeat = function(count) {
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top