Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IE - 'wrap_meth.inner_method' is null or not an object #2

Open
maxymshg opened this issue Mar 5, 2012 · 4 comments
Open

IE - 'wrap_meth.inner_method' is null or not an object #2

maxymshg opened this issue Mar 5, 2012 · 4 comments

Comments

@maxymshg
Copy link

maxymshg commented Mar 5, 2012

Hello,

I tried to use your library and found issue in IE8. As I understand this issue is the same as described here http://stackoverflow.com/questions/9043648/bigdecimal-javascript-library

It would be great if this library will work independent from browser engine.

@patbenatar
Copy link

+1 experiencing the same issue

@ahansen1
Copy link
Contributor

I also saw this issue. I was able to resolve it by updating the following line in bigdecimal.js:

        return wrap_meth.inner_method.apply(this, [args]);

To:

        var m = wrap_meth.inner_method ? wrap_meth.inner_method : arguments.callee.inner_method;
        return m.apply(this, [args]);

@patbenatar
Copy link

@ahansen1 You should fork, apply the fix, and send a pull request to the @iriscouch

@ahansen1
Copy link
Contributor

A couple years ago the fix for this was merged into master. There hasn't been an official release since then. @iriscouch or @jhs is there any chance we could get a new tagged release? This issue could probably be closed then as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants