runIn was a bad idea

This commit is contained in:
Peter 'Pita' Martischka 2012-10-08 14:07:56 +02:00
parent 27f9906b1e
commit a4d68b2b25
2 changed files with 0 additions and 32 deletions

View file

@ -119,13 +119,6 @@ var helper = {};
return deferred;
}
helper.runIn = function($iframe, func){
var eval = $iframe.window.eval;
var funcStr = "(" + func.toString() + ")()";
return eval(funcStr);
}
/* Ensure console.log doesn't blow up in IE, ugly but ok for a test framework imho*/
window.console = window.console || {};
window.console.log = window.console.log || function(){}