diff options
| author | Misko Hevery | 2011-05-23 14:17:55 -0700 | 
|---|---|---|
| committer | Vojta Jina | 2011-06-15 01:14:22 +0200 | 
| commit | e83465c362c53ac7451183a775456f3112262f6e (patch) | |
| tree | 5d69e91e2e300472ea37816100437754f577be49 /src/scenario/Application.js | |
| parent | f370be85cb680a7cac7a23999a865b9c9e731238 (diff) | |
| download | angular.js-e83465c362c53ac7451183a775456f3112262f6e.tar.bz2 | |
Fix scenario runner on IE7, IE8
* add ng:disabled, ng:checked, ng:multiple, ng:readonly, ng:selected
* fetch fixed cookbook/advancedform (use ng:disabled)
* fire keydown instead of change on input
* remove frame when test finishes
Diffstat (limited to 'src/scenario/Application.js')
| -rw-r--r-- | src/scenario/Application.js | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/src/scenario/Application.js b/src/scenario/Application.js index b2c372de..c94581e2 100644 --- a/src/scenario/Application.js +++ b/src/scenario/Application.js @@ -58,6 +58,7 @@ angular.scenario.Application.prototype.navigateTo = function(url, loadFn, errorF      this.executeAction(loadFn);    } else {      frame.css('display', 'none').attr('src', 'about:blank'); +    frame.remove();      this.context.find('#test-frames').append('<iframe>');      frame = this.getFrame_();      frame.load(function() {  | 
