From a46a6db3507cd8518b8c417982cfa947db95562e Mon Sep 17 00:00:00 2001 From: aliaksej Date: Thu, 19 Jan 2012 13:35:44 +0300 Subject: [PATCH] jquery 1.7.1 + jasmine unit tests + IE in standart mode caused "not implemented" error. this construction helped me to fix this issue --- src/jquery.simplemodal.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/jquery.simplemodal.js b/src/jquery.simplemodal.js index 3d8d130..56ae3db 100644 --- a/src/jquery.simplemodal.js +++ b/src/jquery.simplemodal.js @@ -366,7 +366,9 @@ // fix issues with IE if (ie6 || ieQuirks) { - s.fixIE(); + try { + s.fixIE(); + } catch (e) {} } }, /*