Older IE fixes

Still not green, but getting close. Summary of Older IE discrepancies:
- Older IE doesn't have apply/call on the timing functions
- Older IE doesn't allow applying falsy arguments
- Older IE doesn't allow setting onclick to undefined values
- Older IE doesn't have text property on dom nodes
This commit is contained in:
Sheel Choksi
2013-07-21 18:40:12 -07:00
parent d4f78922cd
commit 61a1f93488
6 changed files with 15 additions and 15 deletions

View File

@@ -108,7 +108,7 @@ getJasmineRequireObj().DelayedFunctionScheduler = function() {
for (var i = 0; i < funcsToRun.length; ++i) {
var funcToRun = funcsToRun[i];
funcToRun.funcToCall.apply(null, funcToRun.params);
funcToRun.funcToCall.apply(null, funcToRun.params || []);
}
}
}